From 6d3629592a5364e56ae76b69fb00270f69e20ab8 Mon Sep 17 00:00:00 2001 From: Untone Date: Sat, 6 Jul 2024 04:08:16 +0300 Subject: [PATCH] vercel-asks --- src/routes/profile/security.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/routes/profile/security.tsx b/src/routes/profile/security.tsx index a00f0e1c..7e7371b0 100644 --- a/src/routes/profile/security.tsx +++ b/src/routes/profile/security.tsx @@ -16,7 +16,7 @@ import styles from './Settings.module.scss' type FormField = 'oldPassword' | 'newPassword' | 'newPasswordConfirm' | 'email' type FormData = Record -export const ProfileSecurityPage = () => { +export default () => { const { t } = useLocalize() const { updateProfile, session, isSessionLoaded } = useSession() const { showSnackbar } = useSnackbar() @@ -316,5 +316,3 @@ export const ProfileSecurityPage = () => { ) } - -export default ProfileSecurityPage