lint code

This commit is contained in:
2025-04-14 12:36:04 +02:00
parent 2298c1c115
commit 0db5831116
20 changed files with 1128 additions and 548 deletions

View File

@@ -11,7 +11,7 @@ const agentRoutes = AGENTS.map(item => ({
slug: item.slug,
name: item.name,
icon: item.icon,
to: `/${item.slug}`
to: `/${item.slug}`,
}))
async function toggleTheme() {
@@ -28,7 +28,7 @@ async function toggleTheme() {
const router = useRouter()
defineShortcuts({
t: () => toggleTheme(),
backspace: () => router.back()
backspace: () => router.back(),
})
</script>