We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ac73e7 commit 037d1a1Copy full SHA for 037d1a1
frontend/src/components/its/ClustersTable/components/TableHeader.tsx
@@ -288,4 +288,4 @@ const TableHeader: React.FC<TableHeaderProps> = ({
288
);
289
};
290
291
-export default TableHeader;
+export default TableHeader;
frontend/src/components/marketplace/FeaturedPlugins.tsx
@@ -300,9 +300,9 @@ const FeaturedHeroCard = React.memo(
300
</div>
301
302
<div className="flex w-full flex-wrap justify-center gap-2">
303
- {plugin.tags
304
- ?.slice(0, 3)
305
- .map(tag => <PluginTag key={tag} tag={tag} color={getTagColor(tag)} />)}
+ {plugin.tags?.slice(0, 3).map(tag => (
+ <PluginTag key={tag} tag={tag} color={getTagColor(tag)} />
+ ))}
306
307
308
<div className="mt-2 flex flex-col items-center gap-2">
0 commit comments