diff --git a/apps/explorer/src/components/owned-objects/SmallThumbnailsView.tsx b/apps/explorer/src/components/owned-objects/SmallThumbnailsView.tsx index a75da63960c..c9095bc12c1 100644 --- a/apps/explorer/src/components/owned-objects/SmallThumbnailsView.tsx +++ b/apps/explorer/src/components/owned-objects/SmallThumbnailsView.tsx @@ -24,10 +24,8 @@ interface OwnObjectContainerProps { function OwnObjectContainer({ id, children }: OwnObjectContainerProps): JSX.Element { return ( -
-
- -
+
+
); } @@ -84,17 +82,19 @@ export function SmallThumbnailsView({ limit, }: SmallThumbnailsViewProps): JSX.Element { return ( -
- {loading && } - {data?.map((obj, index) => { - const id = obj.data?.objectId; +
+
+ {loading && } + {data?.map((obj) => { + const id = obj.data?.objectId; - return ( - - - - ); - })} + return ( + + + + ); + })} +
); }