فهرست منبع

keep customizations after logout

Daniel Bohry 9 ماه پیش
والد
کامیت
d257f6fa55
1فایلهای تغییر یافته به همراه0 افزوده شده و 2 حذف شده
  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';
 	}