From 347dd44dcdea6f49eeefdff349a9afe99f56d310 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Fri, 30 Jan 2026 05:49:27 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20incorrect=20method=20call?= =?UTF-8?q?=20for=20checking=20gamemaster=20features?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/websites/pokedex.online/src/views/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/websites/pokedex.online/src/views/Home.vue b/code/websites/pokedex.online/src/views/Home.vue index 478f53f..ea1c953 100644 --- a/code/websites/pokedex.online/src/views/Home.vue +++ b/code/websites/pokedex.online/src/views/Home.vue @@ -120,7 +120,7 @@ const hasAnyAuth = computed(() => { // Check if gamemaster features are enabled const showGamemasterTools = computed(() => { - return isEnabled('gamemaster-features'); + return isEnabled.value('gamemaster-features'); });