diff --git a/.vitepress/routes/index.post.ts b/.vitepress/routes/index.post.ts index 2d0896af2..9560f318e 100644 --- a/.vitepress/routes/index.post.ts +++ b/.vitepress/routes/index.post.ts @@ -26,7 +26,7 @@ export default defineEventHandler(async (event) => { throw new Error("Invalid input."); let description = `${message}\n\n`; - if (contact) description += `**Contact:** ${contact}`; + if (contact) description += `**Contact:** ${contact}\n`; if (page) description += `**Page:** \`${page}\``; await fetcher() diff --git a/eslint.config.js b/eslint.config.js index 53e8f26c0..4f314c14b 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -3,4 +3,5 @@ import tasky from "@taskylizard/eslint-config"; export default tasky({ vue: true, + browser: true, });