diff --git a/src/components/BookmarkList.tsx b/src/components/BookmarkList.tsx index a5dfab36..9ea81de4 100644 --- a/src/components/BookmarkList.tsx +++ b/src/components/BookmarkList.tsx @@ -58,7 +58,6 @@ export const BookmarkList: React.FC = ({ onOpenSettings, onRefresh, isRefreshing, - lastFetchTime, loading = false, relayPool, isMobile = false, diff --git a/src/components/HighlightsPanel.tsx b/src/components/HighlightsPanel.tsx index 47fef3b1..712d86d2 100644 --- a/src/components/HighlightsPanel.tsx +++ b/src/components/HighlightsPanel.tsx @@ -118,13 +118,11 @@ export const HighlightsPanel: React.FC = ({ return (
0} showHighlights={showHighlights} highlightVisibility={highlightVisibility} currentUserPubkey={currentUserPubkey} onToggleHighlights={handleToggleHighlights} - onRefresh={onRefresh} onToggleCollapse={onToggleCollapse} onHighlightVisibilityChange={onHighlightVisibilityChange} isMobile={isMobile} diff --git a/src/components/HighlightsPanel/HighlightsPanelHeader.tsx b/src/components/HighlightsPanel/HighlightsPanelHeader.tsx index c560f8ae..bf7e2b03 100644 --- a/src/components/HighlightsPanel/HighlightsPanelHeader.tsx +++ b/src/components/HighlightsPanel/HighlightsPanelHeader.tsx @@ -5,26 +5,22 @@ import { HighlightVisibility } from '../HighlightsPanel' import IconButton from '../IconButton' interface HighlightsPanelHeaderProps { - loading: boolean hasHighlights: boolean showHighlights: boolean highlightVisibility: HighlightVisibility currentUserPubkey?: string onToggleHighlights: () => void - onRefresh?: () => void onToggleCollapse: () => void onHighlightVisibilityChange?: (visibility: HighlightVisibility) => void isMobile?: boolean } const HighlightsPanelHeader: React.FC = ({ - loading, hasHighlights, showHighlights, highlightVisibility, currentUserPubkey, onToggleHighlights, - onRefresh, onToggleCollapse, onHighlightVisibilityChange, isMobile = false