瀏覽代碼

fix: don’t require encrypted token

httpjamesm 1 年之前
父節點
當前提交
a5329ca410
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      apps/accounts/src/pages/passkeys/index.tsx

+ 1 - 3
apps/accounts/src/pages/passkeys/index.tsx

@@ -4,7 +4,6 @@ import SingleInputForm from '@ente/shared/components/SingleInputForm';
 import { ACCOUNTS_PAGES } from '@ente/shared/constants/pages';
 import { logError } from '@ente/shared/sentry';
 import { getToken } from '@ente/shared/storage/localStorage/helpers';
-import { SESSION_KEYS, getKey } from '@ente/shared/storage/sessionStorage';
 import { Box, Typography } from '@mui/material';
 import { t } from 'i18next';
 import _sodium from 'libsodium-wrappers';
@@ -50,9 +49,8 @@ const Passkeys = () => {
     const router = useRouter();
 
     const checkLoggedIn = () => {
-        const key = getKey(SESSION_KEYS.ENCRYPTION_KEY);
         const token = getToken();
-        if (!key || !token) {
+        if (!token) {
             router.push(ACCOUNTS_PAGES.LOGIN);
         }
     };