mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08:00
Simplify error catching
This commit is contained in:
@@ -7,9 +7,8 @@ export default function Component({ service }) {
|
||||
|
||||
const { data: traefikData, error: traefikError } = useWidgetAPI(widget, "overview");
|
||||
|
||||
if (traefikError || traefikData?.error) {
|
||||
const finalError = traefikError ?? traefikData.error;
|
||||
return <Container error={finalError} />;
|
||||
if (traefikError) {
|
||||
return <Container error={traefikError} />;
|
||||
}
|
||||
|
||||
if (!traefikData) {
|
||||
|
||||
Reference in New Issue
Block a user