diff --git a/app/components/home/Stats.vue b/app/components/home/Stats.vue index a8b11f8..da17969 100644 --- a/app/components/home/Stats.vue +++ b/app/components/home/Stats.vue @@ -12,7 +12,7 @@ const { t } = useI18n({ const time = useTimeAgo(new Date(stats.value!.coding?.data.range.start) ?? new Date()).value.split(' ')[0] const date = useDateFormat(new Date(stats.value!.coding?.data.range.start ?? new Date()), 'DD MMMM YYYY', { locales: currentLocale.value?.code ?? 'en' }) -const hours = usePrecision(stats.value!.coding?.data.grand_total.total_seconds_including_other_language / 3600 ?? 0, 0) +const hours = usePrecision(stats.value!.coding?.data.grand_total.total_seconds_including_other_language / 3600, 0)