🐛 Fix incorrect method call for checking gamemaster features

This commit is contained in:
2026-01-30 05:49:27 +00:00
parent 852c9d31b1
commit 347dd44dcd

View File

@@ -120,7 +120,7 @@ const hasAnyAuth = computed(() => {
// Check if gamemaster features are enabled // Check if gamemaster features are enabled
const showGamemasterTools = computed(() => { const showGamemasterTools = computed(() => {
return isEnabled('gamemaster-features'); return isEnabled.value('gamemaster-features');
}); });
</script> </script>