From c8a6a30e41d788903f94127815d56eedc5be9883 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Thu, 25 May 2023 14:02:05 +0100 Subject: [PATCH] fixed signout bug --- src/app/components/Navbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/Navbar.tsx b/src/app/components/Navbar.tsx index 7c25ccf..810a052 100644 --- a/src/app/components/Navbar.tsx +++ b/src/app/components/Navbar.tsx @@ -116,7 +116,7 @@ function Nav({ pageName }: { pageName: string }) { href="/" className="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium" onClick={() => { - SignOut(); + signOut(); }} > Log Out