diff --git a/web/apps/photos/src/components/Collections/AllAlbums.tsx b/web/apps/photos/src/components/Collections/AllAlbums.tsx index 4eaad44e91..9406779c0b 100644 --- a/web/apps/photos/src/components/Collections/AllAlbums.tsx +++ b/web/apps/photos/src/components/Collections/AllAlbums.tsx @@ -20,7 +20,6 @@ import { } from "ente-new/photos/components/Tiles"; import type { CollectionSummary } from "ente-new/photos/services/collection/ui"; import { CollectionsSortBy } from "ente-new/photos/services/collection/ui"; -import { FlexWrapper } from "ente-shared/components/Container"; import { t } from "i18next"; import memoize from "memoize-one"; import React, { useEffect, useRef, useState } from "react"; @@ -168,7 +167,7 @@ const AlbumsRow = React.memo( const collectionRow = collectionRowList[index]; return (
- + {collectionRow.map((item: any) => ( ))} - +
); },