We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831d110 commit 69fab82Copy full SHA for 69fab82
site/src/pages/UserSettingsPage/AccountPage/AccountPage.tsx
@@ -61,7 +61,7 @@ export const AccountPage: FC = () => {
61
<div
62
css={{ display: "flex", flexFlow: "column nowrap", rowGap: "24px" }}
63
>
64
- {<ErrorAlert error={groupsQuery.error} />}
+ {groupsQuery.isError && <ErrorAlert error={groupsQuery.error} />}
65
66
<Grid container columns={{ xs: 1, md: 2 }} spacing="16px">
67
{groupsQuery.data?.map((group) => (
0 commit comments