diff --git a/web/components/TitleNotifier/TitleNotifier.tsx b/web/components/TitleNotifier/TitleNotifier.tsx index a28b9dcfc..592e96d45 100644 --- a/web/components/TitleNotifier/TitleNotifier.tsx +++ b/web/components/TitleNotifier/TitleNotifier.tsx @@ -17,20 +17,17 @@ export const TitleNotifier: FC = () => { let defaultTitle = ''; const onBlur = () => { - console.log('onBlur'); backgrounded = true; defaultTitle = document.title; }; const onFocus = () => { - console.log('onFocus'); backgrounded = false; window.document.title = defaultTitle; }; const listenForEvents = () => { // Listen for events that should update the title - console.log('listenForEvents'); window.addEventListener('blur', onBlur); window.addEventListener('focus', onFocus); };