Skip to content

Commit bfcb743

Browse files
committed
fix types
1 parent b314f93 commit bfcb743

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/pages/auth/TwoFactorChallenge.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const toggleRecoveryMode = (clearErrors: () => void): void => {
3939
};
4040
4141
const code = ref<number[]>([]);
42-
const codeValue = computed<string>((): string => code.value.join(''));
42+
const codeValue = computed<string>(() => code.value.join(''));
4343
</script>
4444

4545
<template>

0 commit comments

Comments
 (0)