1
0
Fork 0

Reload after importing

This commit is contained in:
Pabloader 2026-04-16 15:44:24 +00:00
parent d2d3ad42d8
commit acf2527d7e
1 changed files with 4 additions and 1 deletions

View File

@ -17,7 +17,10 @@ export const LoginSettings = () => {
};
const handleImport = () => {
if (importStoredReducer(STATE_KEY)) setImported(true);
if (importStoredReducer(STATE_KEY)) {
setImported(true);
location.reload();
}
};
if (loggedIn) {