Explorar el Código

keep customizations after logout

Daniel Bohry hace 9 meses
padre
commit
d257f6fa55
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  1. 0 2
      src/routes/logout/+page.svelte

+ 0 - 2
src/routes/logout/+page.svelte

@@ -4,8 +4,6 @@
 
 	function logout() {
 		localStorage.removeItem('authentication');
-		authentication.set(null);
-		localStorage.clear();
 		window.location.href = '/login';
 	}