Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JiLiZART committed Feb 10, 2024
1 parent d8a1c1d commit 5a21ecd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/ServerStatus.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
<script setup lang="ts">
const { items } = defineProps<{
items: Array<{ id: string; name: string; realm: string; is_live: boolean }>;
items: Array<{
id: number;
is_live: boolean;
last: unknown;
name: string;
realm: string;
short: string;
}>;
}>();
</script>

Expand Down

0 comments on commit 5a21ecd

Please sign in to comment.