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 }}

+