Session api token validation

This commit is contained in:
2026-06-23 11:20:01 +10:00
parent cd1538ba12
commit fcba639bae
25 changed files with 491 additions and 235 deletions
@@ -11,6 +11,7 @@ const props = defineProps<{
achievementCount?: number
followStatus?: string
show: "flights" | "achievements"
showCount?: boolean
}>()
const counts = computed(() => {
@@ -39,7 +40,7 @@ const counts = computed(() => {
</div>
</div>
<div class="board-count">
<div class="board-count" v-if="showCount">
<span class="count-number">{{ counts[show] }}</span>
<span class="count-label">{{show.toUpperCase()}}</span>
</div>