Skip to content

Commit 14cd1d9

Browse files
committed
Wrap text in Typography to avoid React Mui warning.
1 parent efa3d23 commit 14cd1d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-ui/src/components/kudos/PublicKudosCard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const KudosCard = ({ kudos }) => {
5959
prefix = ", ";
6060
}
6161
return <Tooltip arrow title={tooltip}>
62-
{`+${num}`}
62+
<Typography>{`+${num}`}</Typography>
6363
</Tooltip>;
6464
};
6565

0 commit comments

Comments
 (0)