);
};
diff --git a/src/context/LichessUserContext.tsx b/src/context/LichessUserContext.tsx
index a918183..26e8b16 100644
--- a/src/context/LichessUserContext.tsx
+++ b/src/context/LichessUserContext.tsx
@@ -9,13 +9,13 @@ import {
interface ILichessUser {
username: string;
+ id: string;
isLoggedIn: boolean;
}
interface ILichessUserContextType {
user: ILichessUser | null;
- setUser: Dispatch