From f12176e713b7351f8241b7083a3a2b583078b595 Mon Sep 17 00:00:00 2001 From: Owen Date: Fri, 12 Jun 2026 11:20:55 +0200 Subject: [PATCH] remove isLoggedIn booelan from lichess user, either a user exists or doesnt --- src/context/LichessUserContext.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/context/LichessUserContext.tsx b/src/context/LichessUserContext.tsx index 809dc0c..0936d1a 100644 --- a/src/context/LichessUserContext.tsx +++ b/src/context/LichessUserContext.tsx @@ -15,7 +15,6 @@ import { getSession } from "#/server/lichess.ts"; interface ILichessUser { username: string; id: string; - isLoggedIn: boolean; } interface ILichessUserContextType { @@ -38,7 +37,6 @@ export const LichessUserProvider = ({ children }: { children: ReactNode }) => { setUser({ username: session.username, id: session.id, - isLoggedIn: true, }); } })();