From 8f56c44e56cacc1472a3331ebeb9579b2d04fc04 Mon Sep 17 00:00:00 2001 From: hobokenchicken Date: Sat, 6 Jun 2026 00:13:00 -0400 Subject: [PATCH] chore: update login password --- frontend/src/components/LoginScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/LoginScreen.tsx b/frontend/src/components/LoginScreen.tsx index e489b62..4f3aac0 100644 --- a/frontend/src/components/LoginScreen.tsx +++ b/frontend/src/components/LoginScreen.tsx @@ -4,7 +4,7 @@ interface Props { onLogin: () => void; } -const PASSWORD = 'focusbestie'; +const PASSWORD = 'GoogleyBear2020!'; export default function LoginScreen({ onLogin }: Props) { const [input, setInput] = useState('');