theme toggle actually toggles theme; sign-in button actually signs in

This commit is contained in:
Carter 2024-11-01 12:50:05 -06:00
parent bce4089903
commit 6329378586
5 changed files with 22 additions and 14 deletions

View file

@ -74,8 +74,6 @@ export default function UserWrapper(props: Props) {
loadUser()
}, [loading])
console.log(loading)
console.log(global)
if (loading || !global) return (
<LoadingScreen />
)
@ -104,6 +102,5 @@ export default function UserWrapper(props: Props) {
</p>
</NavigationContainer>
</StateProvider>
)
}