From dc09efcf7ee641571ef98b14b4b58383236babd7 Mon Sep 17 00:00:00 2001 From: Colin Fortuner Date: Thu, 10 Aug 2023 14:45:32 -0400 Subject: [PATCH] Update index.tsx --- src/pages/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index d8f6e3e..76eaf03 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -9,6 +9,9 @@ import Chat from "../components/Chat/Chat"; import SmileyFace from '../components/SmileyFace'; import { chatUserIdAtom } from "./_app"; +// Added unused variable foo +const foo = 'foo'; + const Home: NextPage = () => { console.log("Loggin home page"); const userId = useAtomValue(chatUserIdAtom);