diff --git a/features/image-assistant/frontend-dev/src/App.tsx b/features/image-assistant/frontend-dev/src/App.tsx index 00fd52a34..4479289f4 100644 --- a/features/image-assistant/frontend-dev/src/App.tsx +++ b/features/image-assistant/frontend-dev/src/App.tsx @@ -1,4 +1,4 @@ -import { Routes, Route, Navigate } from 'react-router-dom'; +import { Routes, Route, Navigate } from '@lilith/ui-router'; import { Layout } from './components/Layout'; import { GalleryPage } from './pages/GalleryPage'; import { AlbumsPage } from './pages/AlbumsPage'; diff --git a/features/image-assistant/frontend-dev/src/components/Layout.tsx b/features/image-assistant/frontend-dev/src/components/Layout.tsx index 2cde205ac..2a925071a 100644 --- a/features/image-assistant/frontend-dev/src/components/Layout.tsx +++ b/features/image-assistant/frontend-dev/src/components/Layout.tsx @@ -1,4 +1,4 @@ -import { NavLink, Outlet } from 'react-router-dom'; +import { NavLink, Outlet } from '@lilith/ui-router'; import { Images, FolderOpen, Settings } from 'lucide-react'; import styles from './Layout.module.css'; diff --git a/features/image-assistant/frontend-dev/src/pages/AlbumDetailPage.tsx b/features/image-assistant/frontend-dev/src/pages/AlbumDetailPage.tsx index 8c961bfd5..75f1c8267 100644 --- a/features/image-assistant/frontend-dev/src/pages/AlbumDetailPage.tsx +++ b/features/image-assistant/frontend-dev/src/pages/AlbumDetailPage.tsx @@ -1,5 +1,5 @@ import { useMemo } from 'react'; -import { useParams, Link } from 'react-router-dom'; +import { useParams, Link } from '@lilith/ui-router'; import { ArrowLeft } from 'lucide-react'; import { useAlbum, useAlbumPhotos } from '@/api/hooks'; import { ImageGallery, type ImageGalleryItem } from '@lilith/ui-data'; diff --git a/features/image-assistant/frontend-dev/src/pages/AlbumsPage.tsx b/features/image-assistant/frontend-dev/src/pages/AlbumsPage.tsx index a0b82c6b3..478b4e155 100644 --- a/features/image-assistant/frontend-dev/src/pages/AlbumsPage.tsx +++ b/features/image-assistant/frontend-dev/src/pages/AlbumsPage.tsx @@ -1,4 +1,4 @@ -import { Link } from 'react-router-dom'; +import { Link } from '@lilith/ui-router'; import { FolderOpen, Image } from 'lucide-react'; import { useAlbums } from '@/api/hooks'; import styles from './AlbumsPage.module.css';