We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b85a0d7 commit 7309ddeCopy full SHA for 7309dde
resources/js/pages/auth/ConfirmPassword.vue
@@ -1,5 +1,5 @@
1
<script setup lang="ts">
2
-import { store } from '@/actions/Laravel/Fortify/Http/Controllers/ConfirmablePasswordController'
+import { store } from '@/routes/password/confirm'
3
import InputError from '@/components/InputError.vue';
4
import { Button } from '@/components/ui/button';
5
import { Input } from '@/components/ui/input';
resources/js/pages/auth/TwoFactorChallenge.vue
@@ -14,7 +14,7 @@ interface AuthConfigContent {
14
toggleText: string;
15
}
16
17
-const authConfigContent = computed<AuthConfigContent>((): AuthConfigContent => {
+const authConfigContent = computed<AuthConfigContent>(() => {
18
if (showRecoveryInput.value) {
19
return {
20
title: 'Recovery Code',
0 commit comments