From 0639d577a13439d4ab707005489967e48579e737 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 04:50:14 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Remove=20redundant=20lo?= =?UTF-8?q?adStatus=20call=20in=20FileSelector=20component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/gamemaster/FileSelector.vue | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/code/websites/pokedex.online/src/components/gamemaster/FileSelector.vue b/code/websites/pokedex.online/src/components/gamemaster/FileSelector.vue index 8759b7d..c293dd1 100644 --- a/code/websites/pokedex.online/src/components/gamemaster/FileSelector.vue +++ b/code/websites/pokedex.online/src/components/gamemaster/FileSelector.vue @@ -80,11 +80,7 @@ const selectedFileMeta = computed(() => { ); }); -onMounted(() => { - if (activeFilesState.value?.loadStatus) { - activeFilesState.value.loadStatus(); - } -}); +// Don't call loadStatus here - it's called by the parent component