Skip to content

Commit

Permalink
Fix new teams page not loading issue (#9096)
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljames-dj committed Mar 21, 2024
1 parent 5287a5a commit c830ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/webpacker/components/TeamsCommitteesCouncils/index.jsx
Expand Up @@ -49,7 +49,7 @@ export default function TeamsCommitteesCouncils() {
return groupList[selectedGroupIndex];
}, [groupList, hash, setHash]);

if (loading) return <Loading />;
if (loading || !activeGroup) return <Loading />;
if (teamsCommitteesError || councilsError) return <Errored />;

return (
Expand Down

0 comments on commit c830ca1

Please sign in to comment.