From f0bdaa4491aba2c3350ec320ab214ee093132bd2 Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Mon, 25 Sep 2023 00:00:43 -0600 Subject: [PATCH] :( --- app/_components/Header.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/_components/Header.tsx b/app/_components/Header.tsx index 0e79bf3..c589ad8 100644 --- a/app/_components/Header.tsx +++ b/app/_components/Header.tsx @@ -19,7 +19,7 @@ const Navbar = ({ title }: NavbarProps) => { if (pathname !== "/dashboard" && isSignedIn) { return ( - Demo Dashboard + Dashboard ); } else if (!isSignedIn) { @@ -28,7 +28,7 @@ const Navbar = ({ title }: NavbarProps) => { className="btn btn-primary" onClick={() => void router.push("/sign-in")} > - Sign In to Demo + Sign In ); }