This commit is contained in:
Manav Rathi
2025-05-28 12:03:17 +05:30
parent db33e61af9
commit cdd82707f7

View File

@@ -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 (
<div style={style}>
<FlexWrapper gap={"4px"} padding={"16px"}>
<Stack direction="row" sx={{ p: 2, gap: 0.5 }}>
{collectionRow.map((item: any) => (
<AlbumCard
isScrolling={isScrolling}
@@ -177,7 +176,7 @@ const AlbumsRow = React.memo(
key={item.id}
/>
))}
</FlexWrapper>
</Stack>
</div>
);
},