From 69b1c03888cc552581c493323fac0a2d50cbd737 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 27 Jan 2026 10:27:56 +0000 Subject: [PATCH] fix: hide "new events" button when follow mode is enabled The button is redundant in follow mode since events auto-refresh. https://claude.ai/code/session_01Tv9Th39LyQwctwEWqqDVNo --- src/components/ReqViewer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ReqViewer.tsx b/src/components/ReqViewer.tsx index 60ddf4a..336e718 100644 --- a/src/components/ReqViewer.tsx +++ b/src/components/ReqViewer.tsx @@ -1358,8 +1358,8 @@ export default function ReqViewer({ {/* Results */} {(!needsAccount || accountPubkey) && (
- {/* Floating "New Events" Button */} - {isFrozen && newEventCount > 0 && ( + {/* Floating "New Events" Button (hidden in follow mode) */} + {isFrozen && newEventCount > 0 && !follow && (