Client - fix type errors

This commit is contained in:
Sam
2023-11-11 20:16:18 +01:00
parent b6d6a91549
commit 473d0aca53
48 changed files with 228 additions and 118 deletions

View File

@ -27,7 +27,7 @@
const router = useRouter()
const { action } = toRefs(props)
const token = computed(() => route.query.token)
const token = computed(() => route.query.token as string)
onBeforeMount(() => {
if (props.action === 'reset' && !token.value) {