Fix login stuff?

This commit is contained in:
Owen Schwartz 2024-10-06 18:43:20 -04:00
parent 8d1c32e269
commit 68bcf952d0
11 changed files with 76 additions and 37 deletions

View file

@ -1,3 +1,3 @@
import { createContext } from "react";
export const UserContext = createContext<{ id: string } | null>(null);
export const UserContext = createContext<boolean | null>(null);