From c246a0b2647270f228346f6ca6f8200bec0e9ff5 Mon Sep 17 00:00:00 2001 From: julius Date: Mon, 17 Mar 2025 19:27:32 +0100 Subject: [PATCH] fix: teams type --- src/Session.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Session.tsx b/src/Session.tsx index 457212d..fd0f0b4 100644 --- a/src/Session.tsx +++ b/src/Session.tsx @@ -30,7 +30,7 @@ export function SessionProvider(props: SessionProviderProps) { const { children } = props; const [user, setUser] = useState(null); - const [teams, setTeams] = useState(); + const [teams, setTeams] = useState(null); const [err, setErr] = useState(null); const [loading, setLoading] = useState(false);