fix: don’t require encrypted token
This commit is contained in:
parent
9852e3cf37
commit
a5329ca410
1 changed files with 1 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue