fix: 修复存量类型警告

This commit is contained in:
digua
2026-04-23 00:04:27 +08:00
parent 0cdaa8ff4f
commit b270eccea1
4 changed files with 6 additions and 20 deletions
@@ -34,16 +34,6 @@ const props = defineProps<{
timeFilter?: TimeFilter
}>()
const weekdayNames = computed(() => [
t('common.weekday.mon'),
t('common.weekday.tue'),
t('common.weekday.wed'),
t('common.weekday.thu'),
t('common.weekday.fri'),
t('common.weekday.sat'),
t('common.weekday.sun'),
])
// ==================== 核心数字 ====================
const totalMessages = computed(() => props.messageTypes.reduce((sum, item) => sum + item.count, 0))