From 303b96d8e7cb4a9ad29f12975f4f48e423836827 Mon Sep 17 00:00:00 2001 From: kittentm Date: Mon, 20 Jul 2026 22:56:06 +0200 Subject: [PATCH] fix:bangbang: --- app/pages/docs/policy/[id].vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/pages/docs/policy/[id].vue b/app/pages/docs/policy/[id].vue index 2b7ebb5..2683d11 100644 --- a/app/pages/docs/policy/[id].vue +++ b/app/pages/docs/policy/[id].vue @@ -4,7 +4,8 @@ import { ref, onMounted, watch } from 'vue' const { t } = useLocale() const parsedHtml = ref('') -let markedParser: { parse: (text: string) => string | Promise, use: (plugin: unknown) => void } | null = null +// eslint-disable-next-line @typescript-eslint/no-explicit-any +let markedParser: any = null const baseRules = ref>([]) const gameRules = ref>([]) @@ -197,14 +198,15 @@ watch(selectedCategory, (newId) => {

{{ t.policies?.loading }}

+