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);