diff --git a/features/image-assistant/frontend-dev/src/pages/GalleryPage.tsx b/features/image-assistant/frontend-dev/src/pages/GalleryPage.tsx index dc4326ee4..e2aa6e3f5 100644 --- a/features/image-assistant/frontend-dev/src/pages/GalleryPage.tsx +++ b/features/image-assistant/frontend-dev/src/pages/GalleryPage.tsx @@ -1,4 +1,4 @@ -import { useState, useMemo } from 'react'; +import { useMemo, useState } from 'react'; import { Image, Heart } from 'lucide-react'; import { usePhotos } from '@/api/hooks'; import type { PhotoFilters } from '@/api/types'; @@ -73,7 +73,7 @@ export function GalleryPage() { }); }, [photos]); - const filterPresets: { value: FilterPreset; label: string; icon?: React.ReactNode }[] = [ + const filterPresets: { value: FilterPreset; label: string; icon?: ReactNode }[] = [ { value: 'all', label: 'All' }, { value: 'photos', label: 'Photos', icon: }, { value: 'videos', label: 'Videos' },