From f620d033b0d300343a4472c49262d324b80d98a7 Mon Sep 17 00:00:00 2001 From: Athou Date: Wed, 12 Mar 2025 07:21:31 +0100 Subject: [PATCH] DisablePullToRefresh doesn't need to be in HashRouter --- commafeed-client/src/App.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/commafeed-client/src/App.tsx b/commafeed-client/src/App.tsx index 978dae35..5dffcc6b 100644 --- a/commafeed-client/src/App.tsx +++ b/commafeed-client/src/App.tsx @@ -188,15 +188,15 @@ export function App() { + {/* disable pull-to-refresh as it messes with vertical scrolling + safari behaves weirdly when overscroll-behavior is set to none so we disable it only for other browsers + https://github.com/Athou/commafeed/issues/1168 + */} + {!isSafari && } - {/* disable pull-to-refresh as it messes with vertical scrolling - safari behaves weirdly when overscroll-behavior is set to none so we disable it only for other browsers - https://github.com/Athou/commafeed/issues/1168 - */} - {!isSafari && }