diff --git a/apps/frontend/app/components/common.tsx b/apps/frontend/app/components/common.tsx index 7802f820f7..c599cd3026 100644 --- a/apps/frontend/app/components/common.tsx +++ b/apps/frontend/app/components/common.tsx @@ -297,6 +297,7 @@ export const BaseMediaDisplayItem = (props: { > {`Image ({ height: 180 })) .exhaustive(), }} - alt={`Image for ${props.name}`} styles={{ root: { transitionProperty: "transform", @@ -369,9 +369,9 @@ export const BaseMediaDisplayItem = (props: { ) : ( ({ base: 6, md: 3 })) .with(GridPacking.Dense, () => ({ md: 2 })) @@ -402,11 +402,11 @@ export const BaseMediaDisplayItem = (props: { }; export const FiltersModal = (props: { + title?: string; opened: boolean; cookieName: string; children: ReactNode; closeFiltersModal: () => void; - title?: string; }) => { const navigate = useNavigate(); @@ -475,8 +475,8 @@ export const CollectionsFilter = (props: { }; export const DisplayThreePointReview = (props: { - rating?: string | null; size?: number; + rating?: string | null; }) => match(convertDecimalToThreePointSmiley(Number(props.rating || ""))) .with(ThreePointSmileyRating.Happy, () => ( @@ -846,10 +846,10 @@ export const DisplayCollectionEntity = (props: { .run(); export const DisplayCollection = (props: { - creatorUserId: string; - col: { id: string; name: string }; entityId: string; entityLot: EntityLot; + creatorUserId: string; + col: { id: string; name: string }; }) => { const color = useGetRandomMantineColor(props.col.name); const submit = useConfirmSubmit();