Fix login stuff?

This commit is contained in:
Owen Schwartz 2024-10-06 18:43:20 -04:00
parent 06eb1544f4
commit d144704066
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
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);