From 10f436521e79ad81165d5062757b32d750ebd95d Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Sat, 24 Aug 2024 02:20:52 -0400 Subject: [PATCH] style: remove ArtifactButton inline-block styling --- .../components/Artifacts/ArtifactButton.tsx | 36 +++++++++---------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/client/src/components/Artifacts/ArtifactButton.tsx b/client/src/components/Artifacts/ArtifactButton.tsx index f20352fef8..a1f32e8e73 100644 --- a/client/src/components/Artifacts/ArtifactButton.tsx +++ b/client/src/components/Artifacts/ArtifactButton.tsx @@ -14,29 +14,25 @@ const ArtifactButton = ({ artifact }: { artifact: Artifact | null }) => { const fileType = getFileType('artifact'); return ( - <> -
- -
- {/* new line*/} -
- + + + ); };