diff --git a/client/src/components/Nav/Logout.tsx b/client/src/components/Nav/Logout.tsx index 4a7eca5e44..a16f4f3266 100644 --- a/client/src/components/Nav/Logout.tsx +++ b/client/src/components/Nav/Logout.tsx @@ -7,18 +7,10 @@ const Logout = forwardRef(() => { const { logout } = useAuthContext(); const localize = useLocalize(); - const handleLogout = () => { - localStorage.removeItem('lastConversationSetup'); - localStorage.removeItem('lastSelectedTools'); - localStorage.removeItem('lastAssistant'); - localStorage.removeItem('autoScroll'); - logout(); - }; - return (