File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import { handleVerification as handleForgotPasswordVerification } from '../_auth
12
12
import { handleVerification as handleOnboardingVerification } from '../_auth+/onboarding.tsx'
13
13
import { handleVerification as handleChangeEmailVerification } from '../settings+/profile.change-email.index/index.tsx'
14
14
import { handleVerification as handleEnableTwoFactorVerification } from '../settings+/profile.two-factor.verify.tsx'
15
- import { handleVerification as handleReverifyVerification } from './login.tsx'
15
+ import { handleVerification as handleLoginTwoFactorVerification } from './login.tsx'
16
16
17
17
export const ROUTE_PATH = '/resources/verify'
18
18
@@ -193,7 +193,7 @@ export async function validateRequest(
193
193
return handleEnableTwoFactorVerification ( { request, body, submission } )
194
194
}
195
195
case '2fa' : {
196
- return handleReverifyVerification ( { request, body, submission } )
196
+ return handleLoginTwoFactorVerification ( { request, body, submission } )
197
197
}
198
198
case 'change-email' : {
199
199
await deleteVerification ( )
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ export default function EditUserProfile() {
224
224
< div className = "col-span-full my-3" >
225
225
< Link to = "two-factor" >
226
226
{ data . isTwoFactorEnabled ? (
227
- < Icon name = "lock-closed" > 2FA is enabled</ Icon >
227
+ < Icon name = "lock-closed" > 2FA is enabled</ Icon >
228
228
) : (
229
229
< Icon name = "lock-open-1" > Enable 2FA</ Icon >
230
230
) }
You can’t perform that action at this time.
0 commit comments