Skip to content

Commit

Permalink
fix: unicode error
Browse files Browse the repository at this point in the history
  • Loading branch information
fspoettel committed Jun 24, 2024
1 parent e6b7b5c commit b5b29f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/card/card-names.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function CardNames({
const cardName = (
<>
{parallel && <i className={clsx(css["parallel"], "icon-parallel")} />}
{name} <span>{isUnique && "&#10040;"}</span>
{name} <span>{isUnique && ""}</span>
</>
);

Expand Down

0 comments on commit b5b29f6

Please sign in to comment.