Skip to content

Commit

Permalink
Use badge primary for tags model
Browse files Browse the repository at this point in the history
  • Loading branch information
urmauur committed Dec 4, 2023
1 parent 3a4f354 commit f58702f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/screens/ExploreModels/ExploreModelItem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const ExploreModelItem = forwardRef<HTMLDivElement, Props>(({ model }, ref) => {
</span>
<div className="mt-2 flex space-x-2">
{model.metadata.tags.map((tag, i) => (
<Badge key={i} themes={i === 0 ? 'primary' : 'pink'}>
<Badge key={i} themes="primary">
{tag}
</Badge>
))}
Expand Down

0 comments on commit f58702f

Please sign in to comment.