remove debug log line

This commit is contained in:
Scott Merchant 2024-06-10 10:03:06 +09:30 committed by Zoe Roux
parent eafd5f593d
commit f5faf06f81
No known key found for this signature in database

View File

@ -60,7 +60,6 @@ export const SearchPage: QueryPage<{ q?: string }> = ({ q }) => {
const [layout, setLayout] = useState(Layout.Grid);
const mediaType = getMediaTypeFromParam(mediaTypeParam);
console.log("search: mediaType", mediaType);
const LayoutComponent = layout === Layout.Grid ? ItemGrid : ItemList;
return (