diff --git a/app/ligonier/photo_gallery.tsx b/app/ligonier/photo_gallery.tsx index 3e37428..afbc282 100644 --- a/app/ligonier/photo_gallery.tsx +++ b/app/ligonier/photo_gallery.tsx @@ -2,10 +2,9 @@ import { useLoaderData } from 'react-router'; import { useState } from 'react'; import { Header } from './header'; import { Footer } from './footer'; -import { ControlBar } from './control_bar'; import { PhotoCard } from './photo_card'; -export function PhotoGallery({ numColumns }) { +export function PhotoGallery() { const imageData = useLoaderData(); const [isGallery, setGallery] = useState(false); return (