fix: color /me highlights with 'my highlights' color setting

- Set level: 'mine' on all highlights in /me page
- Highlights now use the customizable --highlight-color-mine CSS variable
- Quote icons and borders automatically match user's color preference
- Consistent styling with highlights shown elsewhere in the app
This commit is contained in:
Gigi
2025-10-11 09:04:48 +01:00
parent 096478bcec
commit c85092a644

View File

@@ -105,7 +105,7 @@ const Me: React.FC<MeProps> = ({ relayPool }) => {
{highlights.map((highlight) => (
<HighlightItem
key={highlight.id}
highlight={highlight}
highlight={{ ...highlight, level: 'mine' }}
relayPool={relayPool}
onHighlightDelete={handleHighlightDelete}
/>