Client - fix typing

This commit is contained in:
Sam
2022-05-28 20:03:58 +02:00
parent b5d09008ee
commit 020b1f0558
4 changed files with 8 additions and 8 deletions

View File

@ -165,12 +165,12 @@
import { LocationQuery, useRoute, useRouter } from 'vue-router'
import { ISport } from '@/types/sports'
import { IUserProfile } from '@/types/user'
import { IAuthUserProfile } from '@/types/user'
import { translateSports } from '@/utils/sports'
import { units } from '@/utils/units'
interface Props {
authUser: IUserProfile
authUser: IAuthUserProfile
sports: ISport[]
}
const props = defineProps<Props>()