Skip to content

Commit

Permalink
Fix formatting in Overview component for empty resource group check
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed Sep 20, 2024
1 parent a2cb72e commit 43815f1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions StatusPage/src/Pages/Overview/Overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,7 @@ const Overview: FunctionComponent<PageComponentProps> = (
data.group,
);


if(resourcesInGroup.length === 0) {
if (resourcesInGroup.length === 0) {
return <></>;
}

Expand Down

0 comments on commit 43815f1

Please sign in to comment.