From 398626250e71b85029288167ab47f25f297c0914 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Sat, 11 Mar 2023 19:08:31 +0100 Subject: [PATCH] Remove console log (#258) #255 accidentally added a console log which caused the build to fail --- src/components/navbar/NavBarContextProvider.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/navbar/NavBarContextProvider.tsx b/src/components/navbar/NavBarContextProvider.tsx index a8fc4742..b5a149ab 100644 --- a/src/components/navbar/NavBarContextProvider.tsx +++ b/src/components/navbar/NavBarContextProvider.tsx @@ -24,7 +24,6 @@ export default function NavBarProvider({ children }: IProps) { const updateTitle = useCallback( (newTitle: string) => { - console.log('title:', newTitle); document.title = `${newTitle} - Tachidesk`; setTitle(newTitle); },