소스 검색

refactor: when deleting your account you'll be redirected to home

Kristian Vos 3 년 전
부모
커밋
1cf40bb640
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      frontend/src/components/modals/RemoveAccount.vue

+ 1 - 1
frontend/src/components/modals/RemoveAccount.vue

@@ -250,7 +250,7 @@ export default {
 						lofig.get("cookie").then(cookie => {
 							document.cookie = `${cookie.SIDname}=;expires=Thu, 01 Jan 1970 00:00:01 GMT;`;
 							this.closeModal("removeAccount");
-							return window.location.reload();
+							window.location.href = "/";
 						})
 					);
 				}