소스 검색

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';
 	}