Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/routes/(app)/setup-mfa/+page.server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ALLAUTH_API_URL, BASE_API_URL } from '$lib/utils/constants';
import { fail, redirect } from '@sveltejs/kit';
import type { Actions, PageServerLoad } from './$types';
import { activateTOTPSchema } from '../(internal)/my-profile/settings/mfa/utils/schemas';
import { activateTOTPSchema } from '../(third-party)/my-profile/settings/mfa/utils/schemas';
import { setError, superValidate } from 'sveltekit-superforms';
import { zod4 as zod } from 'sveltekit-superforms/adapters';
import { safeTranslate } from '$lib/utils/i18n';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/routes/(app)/setup-mfa/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import OTPInput from '$lib/components/Forms/OTP/OTPInput.svelte';
import QR from '@svelte-put/qr/svg/QR.svelte';
import { zod4 as zod } from 'sveltekit-superforms/adapters';
import { activateTOTPSchema } from '../(internal)/my-profile/settings/mfa/utils/schemas';
import { activateTOTPSchema } from '../(third-party)/my-profile/settings/mfa/utils/schemas';

let { data } = $props();
</script>
Expand Down
Loading