diff --git a/src/components/ThreePaneLayout.tsx b/src/components/ThreePaneLayout.tsx index 2ebc0025..d535ed18 100644 --- a/src/components/ThreePaneLayout.tsx +++ b/src/components/ThreePaneLayout.tsx @@ -368,7 +368,9 @@ const ThreePaneLayout: React.FC = (props) => { summary={props.readerContent?.summary} published={props.readerContent?.published} selectedUrl={props.selectedUrl} - highlights={props.classifiedHighlights} + highlights={props.selectedUrl && props.selectedUrl.startsWith('nostr:') + ? props.highlights // article-specific highlights only + : props.classifiedHighlights} showHighlights={props.showHighlights} highlightStyle={props.settings.highlightStyle || 'marker'} highlightColor={props.settings.highlightColor || '#ffff00'}