Fix import resolution errors by removing file extensions

This commit is contained in:
tips-of-mine
2025-06-16 14:46:59 +02:00
committed by GitHub
parent a0f805e842
commit a539851cad
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import { useTheme } from './hooks/useTheme'
// Layout Components
import { PublicLayout } from './components/layouts/PublicLayout'
import { ProtectedLayout } from './components/layouts/ProtectedLayout.tsx'
import { ProtectedLayout } from './components/layouts/ProtectedLayout'
// Pages
import { LoginPage } from './pages/auth/LoginPage'

View File

@ -1,6 +1,6 @@
export { authApi } from './auth'
export { certificatesApi } from './certificates'
export { perimetersApi } from './perimeters'
export { usersApi } from './users.ts'
export { usersApi } from './users'
export { dashboardApi } from './dashboard'
export { apiClient } from './client'