From c7d4b5f2c3796c2f5b76708395eda86ddf938dd2 Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Fri, 31 Jan 2025 01:18:49 +0100 Subject: [PATCH] Updates TS hints --- src/components/screens/Characters.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/screens/Characters.vue b/src/components/screens/Characters.vue index 67d0e7a..e817760 100644 --- a/src/components/screens/Characters.vue +++ b/src/components/screens/Characters.vue @@ -131,11 +131,11 @@ import { onBeforeUnmount, onMounted, ref, watch } from 'vue' const gameStore = useGameStore() const isLoading = ref(true) const characters = ref([]) -const selectedCharacterId = ref(null) +const selectedCharacterId = ref(null) const isCreateNewCharacterModalOpen = ref(false) const newCharacterName = ref('') const characterHairs = ref([]) -const selectedHairId = ref(null) +const selectedHairId = ref(null) // Fetch characters setTimeout(() => {