fix: update import paths after client-side file renames

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jubnl
2026-04-02 18:59:22 +02:00
parent c0e9a771d6
commit bbf3f0cae8
6 changed files with 12 additions and 12 deletions
+4 -4
View File
@@ -11,12 +11,12 @@ import SettingsPage from './pages/SettingsPage'
import VacayPage from './pages/VacayPage'
import AtlasPage from './pages/AtlasPage'
import SharedTripPage from './pages/SharedTripPage'
import NotificationsPage from './pages/NotificationsPage'
import InAppNotificationsPage from './pages/InAppNotificationsPage.tsx'
import { ToastContainer } from './components/shared/Toast'
import { TranslationProvider, useTranslation } from './i18n'
import { authApi } from './api/client'
import { usePermissionsStore, PermissionLevel } from './store/permissionsStore'
import { useNotificationListener } from './hooks/useNotificationListener'
import { useInAppNotificationListener } from './hooks/useInAppNotificationListener.ts'
interface ProtectedRouteProps {
children: ReactNode
@@ -117,7 +117,7 @@ export default function App() {
const { settings } = useSettingsStore()
useNotificationListener()
useInAppNotificationListener()
useEffect(() => {
if (isAuthenticated) {
@@ -222,7 +222,7 @@ export default function App() {
path="/notifications"
element={
<ProtectedRoute>
<NotificationsPage />
<InAppNotificationsPage />
</ProtectedRoute>
}
/>