From 2aa311dfbd92657404b3ee150da9818640537f02 Mon Sep 17 00:00:00 2001 From: JCNoguera <88061365+VmMad@users.noreply.github.com> Date: Tue, 26 Nov 2024 11:56:31 +0100 Subject: [PATCH] feat: add styles for small thumbnail view --- .../owned-objects/SmallThumbnailsView.tsx | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) 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 ( + + + + ); + })} +
); }