Skip to content

Commit 1526c46

Browse files
🐛 fix: Fix dashboard
1 parent d4fd3d0 commit 1526c46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Dashboard/Text.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const Dashboard = memo<{ className: string }>(({ className }) => {
2525
{
2626
color: {
2727
color: true,
28-
value: '#fff',
28+
value: '#ffffff',
2929
},
3030
size: {
3131
max: 96,
@@ -45,7 +45,7 @@ const Dashboard = memo<{ className: string }>(({ className }) => {
4545
if (!IconRender) return null;
4646
return (
4747
<IconPreview className={styles.item} key={index}>
48-
<IconRender color={color === '#fff' ? undefined : color} size={size} />
48+
<IconRender color={color === '#ffffff' ? undefined : color} size={size} />
4949
</IconPreview>
5050
);
5151
})}

0 commit comments

Comments
 (0)