From 7e312a38fff80a5855681d22c6ad1fc3f04fb2ec Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sat, 10 Dec 2022 21:02:03 +0800 Subject: [PATCH] This is why you should close tabs and not let them pile up in the tab bar --- src/app.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.jsx b/src/app.jsx index fbc0cfea..61fee694 100644 --- a/src/app.jsx +++ b/src/app.jsx @@ -245,7 +245,7 @@ export function App() { setCurrentDeck('notifications'); } else if (url === '/') { setCurrentDeck('home'); - document.title = `Home / ${CLIENT_NAME}}`; + document.title = `Home / ${CLIENT_NAME}`; } else if (url === '/login' || url === '/welcome') { setCurrentDeck(null); }