diff --git a/src/components/Debug.tsx b/src/components/Debug.tsx index 7be214a4..63ed6a4b 100644 --- a/src/components/Debug.tsx +++ b/src/components/Debug.tsx @@ -711,6 +711,7 @@ const Debug: React.FC = ({ isHighlightsCollapsed={true} isSidebarOpen={false} showSettings={false} + showSupport={true} bookmarks={bookmarks} bookmarksLoading={bookmarksLoading} viewMode={viewMode} @@ -732,7 +733,7 @@ const Debug: React.FC = ({ classifiedHighlights={[]} showHighlights={false} selectedHighlightId={undefined} - highlightVisibility="all" + highlightVisibility={{ nostrverse: true, friends: true, mine: true }} onHighlightClick={() => {}} onTextSelection={() => {}} onClearSelection={() => {}} @@ -753,9 +754,8 @@ const Debug: React.FC = ({ toastMessage={undefined} toastType={undefined} onClearToast={() => {}} - > - {debugContent} - + support={debugContent} + /> ) }