Fix button-within-button

This commit is contained in:
Oliver Walters 2026-06-14 00:49:49 +00:00
parent cc36bfb8e4
commit dff26b92a7
1 changed files with 4 additions and 7 deletions

View File

@ -681,13 +681,10 @@ export default function NotesEditor({
<Group gap='xs' wrap='nowrap' justify='space-between'>
<Text size='sm'>{note.title}</Text>
{note.primary && (
<ActionIcon
size='xs'
color='yellow'
variant='transparent'
>
<IconStar />
</ActionIcon>
<IconStar
size={14}
color='var(--mantine-color-yellow-6)'
/>
)}
</Group>
</Tabs.Tab>