From f5a3a3b32b0abb63d73e33e076f43ada260c84e1 Mon Sep 17 00:00:00 2001 From: "Navy.gif" Date: Tue, 22 Mar 2022 01:11:51 +0200 Subject: [PATCH] title test --- client/src/App.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/App.js b/client/src/App.js index c8cb79e..1a9fb40 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -16,6 +16,7 @@ function App() { const [user, updateSession] = useLoginContext(); useEffect(() => { + document.title = `Corgi Corner`; fetchUser().then(user => { if (user) setSession(user, user.accessToken); else clearSession();