소스 검색

Remove unneeded logging

ghorsington 4 년 전
부모
커밋
0c0cdef39b
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      web/src/routes/_layout.svelte

+ 0 - 1
web/src/routes/_layout.svelte

@@ -11,7 +11,6 @@
   ) {
     const authResult = await this.fetch("/login/check");
     const result = (await authResult.json()) as AuthInfo;
-    console.log(`Auth: ${result.loggedIn}`);
     if (path.startsWith("/login/")) {
       if (result.loggedIn) {
         return this.redirect(302, "/");