From 5a94fc6d9029b25a0cc0d49e5d71b39a822e9e13 Mon Sep 17 00:00:00 2001 From: Oliver Hofmann Date: Sun, 10 May 2026 10:22:33 +0200 Subject: [PATCH] Reset lastUpdated on logout --- frontend/src/main.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/main.jsx b/frontend/src/main.jsx index bbb52df..fb1da3e 100644 --- a/frontend/src/main.jsx +++ b/frontend/src/main.jsx @@ -327,6 +327,7 @@ function App() { const logout = () => { sessionStorage.removeItem('admin_password'); + setLastUpdated(null); setPassword(null); };