mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-10 15:28:47 +00:00
Simplify error catching
This commit is contained in:
parent
00163d2f44
commit
8a783ba9f6
41 changed files with 93 additions and 113 deletions
|
@ -15,9 +15,8 @@ export default function Component({ service }) {
|
|||
|
||||
const { data: clusterData, error: clusterError } = useWidgetAPI(widget, "cluster/resources");
|
||||
|
||||
if (clusterError || clusterData?.error) {
|
||||
const finalError = clusterError ?? clusterData.error;
|
||||
return <Container error={finalError} />;
|
||||
if (clusterError) {
|
||||
return <Container error={clusterError} />;
|
||||
}
|
||||
|
||||
if (!clusterData || !clusterData.data) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue