feat(frontend): Use i18n, type fixes

This commit is contained in:
2025-08-02 08:45:00 +02:00
parent 7b5a1a3bda
commit f9851f01d9
9 changed files with 1083 additions and 33 deletions

View File

@@ -1,3 +1,4 @@
const { client } = useAuth()
import type { useAuth } from '#imports'
export type ActiveOrganization = typeof client.$Infer.ActiveOrganization
type Client = ReturnType<typeof useAuth>['client']
export type ActiveOrganization = Client['$Infer']['ActiveOrganization']