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
@@ -6,9 +6,9 @@ import { useTranslation } from '../../i18n'
import { useNotificationStore } from '../../store/notificationStore'
import { useSettingsStore } from '../../store/settingsStore'
import { useAuthStore } from '../../store/authStore'
import NotificationItem from '../Notifications/NotificationItem'
import InAppNotificationItem from '../Notifications/InAppNotificationItem.tsx'
export default function NotificationBell(): React.ReactElement {
export default function InAppNotificationBell(): React.ReactElement {
const { t } = useTranslation()
const navigate = useNavigate()
const { settings } = useSettingsStore()
@@ -143,7 +143,7 @@ export default function NotificationBell(): React.ReactElement {
</div>
) : (
notifications.slice(0, 10).map(n => (
<NotificationItem key={n.id} notification={n} onClose={() => setOpen(false)} />
<InAppNotificationItem key={n.id} notification={n} onClose={() => setOpen(false)} />
))
)}
</div>
+2 -2
View File
@@ -7,7 +7,7 @@ import { useAddonStore } from '../../store/addonStore'
import { useTranslation } from '../../i18n'
import { Plane, LogOut, Settings, ChevronDown, Shield, ArrowLeft, Users, Moon, Sun, Monitor, CalendarDays, Briefcase, Globe } from 'lucide-react'
import type { LucideIcon } from 'lucide-react'
import NotificationBell from './NotificationBell'
import InAppNotificationBell from './InAppNotificationBell.tsx'
const ADDON_ICONS: Record<string, LucideIcon> = { CalendarDays, Briefcase, Globe }
@@ -165,7 +165,7 @@ export default function Navbar({ tripTitle, tripId, onBack, showBack, onShare }:
</button>
{/* Notification bell */}
{user && <NotificationBell />}
{user && <InAppNotificationBell />}
{/* User menu */}
{user && (
@@ -21,7 +21,7 @@ interface NotificationItemProps {
onClose?: () => void
}
export default function NotificationItem({ notification, onClose }: NotificationItemProps): React.ReactElement {
export default function InAppNotificationItem({ notification, onClose }: NotificationItemProps): React.ReactElement {
const { t, locale } = useTranslation()
const navigate = useNavigate()
const { settings } = useSettingsStore()