Skip to content

Commit

Permalink
Fix color coding for Money tag
Browse files Browse the repository at this point in the history
Updated the color coding logic for notes associated with the Money tag to ensure proper visual representation.
[skip gpt_engineer]
  • Loading branch information
lovable-dev[bot] committed Oct 12, 2024
1 parent ab81fec commit 9e5345d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/NoteCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ const tagColorMap = {
'Projects': 'teal',
'Work': 'pink',
'Study': 'orange',
'Experiments': 'green', // Added new tag color
'Experiments': 'green',
'Money': 'emerald', // Added new tag color for Money
};

const NoteCard = ({ id, title, content, color, tag, created_at, onTagClick }) => {
Expand Down

0 comments on commit 9e5345d

Please sign in to comment.