We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f87136 commit 81f0930Copy full SHA for 81f0930
1 file changed
src/frontend/src/pages/GuestDivisionsPage/GuestDivisionPage.tsx
@@ -15,8 +15,8 @@ const GuestDivisionPage: React.FC = () => {
15
error: teamTypesError
16
} = useAllTeamTypes();
17
18
- if (teamTypesIsLoading || !allTeamTypes) return <LoadingIndicator />;
19
if (teamTypesIsError) return <ErrorPage message={teamTypesError.message} />;
+ if (teamTypesIsLoading || !allTeamTypes) return <LoadingIndicator />;
20
21
if (allTeamTypes.length === 0) {
22
return (
0 commit comments