Client - minor fixes

This commit is contained in:
Sam
2022-08-27 19:23:01 +02:00
parent 59940ed41d
commit 9ed142e100
4 changed files with 11 additions and 5 deletions

View File

@ -28,13 +28,13 @@
import SportsMenu from '@/components/Statistics/StatsSportsMenu.vue'
import { ISport, ITranslatedSport } from '@/types/sports'
import { IStatisticsDateParams } from '@/types/statistics'
import { IUserProfile } from '@/types/user'
import { IAuthUserProfile } from '@/types/user'
import { translateSports } from '@/utils/sports'
import { getStatsDateParams, updateChartParams } from '@/utils/statistics'
interface Props {
sports: ISport[]
user: IUserProfile
user: IAuthUserProfile
}
const props = defineProps<Props>()