File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ const updateApiTokenForm = useForm({
32
32
permissions: [],
33
33
});
34
34
35
- const deleteApiTokenForm = useForm ();
35
+ const deleteApiTokenForm = useForm ({} );
36
36
37
37
const displayingToken = ref (false );
38
38
const managingPermissionsFor = ref (null );
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ const form = useForm({
26
26
password: ' ' ,
27
27
remember: false ,
28
28
});
29
- const providerForm = useForm ();
29
+ const providerForm = useForm ({} );
30
30
31
31
watch (
32
32
() => props .publicKey ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const props = defineProps({
8
8
status: String ,
9
9
});
10
10
11
- const form = useForm ();
11
+ const form = useForm ({} );
12
12
13
13
const verificationLinkSent = computed (() => props .status === ' verification-link-sent' );
14
14
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ import JetSecondaryButton from '@/Components/Jetstream/SecondaryButton.vue';
6
6
import JetActionSection from ' @/Components/Jetstream/ActionSection.vue' ;
7
7
import JetInputError from ' @/Components/InputError.vue' ;
8
8
9
- const form = useForm ();
10
- const providerForm = useForm ();
9
+ const form = useForm ({} );
10
+ const providerForm = useForm ({} );
11
11
const errors = computed (() => usePage ().props .errors );
12
12
13
13
const deleteProvider = (provider ) => {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import JetConfirmationModal from '@/Components/Jetstream/ConfirmationModal.vue';
4
4
import JetDangerButton from ' @/Components/Jetstream/DangerButton.vue' ;
5
5
import JetSecondaryButton from ' @/Components/Jetstream/SecondaryButton.vue' ;
6
6
7
- const form = useForm ();
7
+ const form = useForm ({} );
8
8
9
9
const props = defineProps ({
10
10
keyid: Number ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const isSupported = ref(true);
16
16
const errorMessage = ref (' ' );
17
17
const processing = ref (false );
18
18
19
- const authForm = useForm ();
19
+ const authForm = useForm ({} );
20
20
21
21
watch (
22
22
() => props .publicKey ,
You can’t perform that action at this time.
0 commit comments