Skip to content

Commit 7309dde

Browse files
committed
remove duplicate type defination
1 parent b85a0d7 commit 7309dde

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/js/pages/auth/ConfirmPassword.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { store } from '@/actions/Laravel/Fortify/Http/Controllers/ConfirmablePasswordController'
2+
import { store } from '@/routes/password/confirm'
33
import InputError from '@/components/InputError.vue';
44
import { Button } from '@/components/ui/button';
55
import { Input } from '@/components/ui/input';

resources/js/pages/auth/TwoFactorChallenge.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ interface AuthConfigContent {
1414
toggleText: string;
1515
}
1616
17-
const authConfigContent = computed<AuthConfigContent>((): AuthConfigContent => {
17+
const authConfigContent = computed<AuthConfigContent>(() => {
1818
if (showRecoveryInput.value) {
1919
return {
2020
title: 'Recovery Code',

0 commit comments

Comments
 (0)