diff --git a/web/containers/CardSidebar/index.tsx b/web/containers/CardSidebar/index.tsx
index c26033367..8b0fd1058 100644
--- a/web/containers/CardSidebar/index.tsx
+++ b/web/containers/CardSidebar/index.tsx
@@ -32,13 +32,12 @@ export default function CardSidebar({
return (
@@ -93,7 +92,11 @@ export default function CardSidebar({
)}
- {show && {children}
}
+ {show && (
+
+ {children}
+
+ )}
)
}
diff --git a/web/screens/ExploreModels/ExploreModelItem/index.tsx b/web/screens/ExploreModels/ExploreModelItem/index.tsx
index c3bcdd967..553c73a49 100644
--- a/web/screens/ExploreModels/ExploreModelItem/index.tsx
+++ b/web/screens/ExploreModels/ExploreModelItem/index.tsx
@@ -62,7 +62,12 @@ const ExploreModelItem = forwardRef(({ model }, ref) => {
{model.metadata.tags.map((tag, i) => (
-
+
{tag}
))}