Skip to content

Commit

Permalink
🐛 fix: Fix dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
canisminor1990 authored Feb 2, 2024
1 parent d4fd3d0 commit 1526c46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Dashboard/Text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Dashboard = memo<{ className: string }>(({ className }) => {
{
color: {
color: true,
value: '#fff',
value: '#ffffff',
},
size: {
max: 96,
Expand All @@ -45,7 +45,7 @@ const Dashboard = memo<{ className: string }>(({ className }) => {
if (!IconRender) return null;
return (
<IconPreview className={styles.item} key={index}>
<IconRender color={color === '#fff' ? undefined : color} size={size} />
<IconRender color={color === '#ffffff' ? undefined : color} size={size} />
</IconPreview>
);
})}
Expand Down

0 comments on commit 1526c46

Please sign in to comment.