From 938d79663bb00dc959dd1e775a10ea33d5929977 Mon Sep 17 00:00:00 2001 From: Gigi Date: Tue, 14 Oct 2025 01:13:02 +0200 Subject: [PATCH] fix: remove unused isRefreshing parameter from PullToRefreshIndicator - Keep prop in interface for backward compatibility - Don't destructure unused parameter to satisfy linter - All lint checks and type checks now pass --- src/components/PullToRefreshIndicator.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/PullToRefreshIndicator.tsx b/src/components/PullToRefreshIndicator.tsx index c5108b8c..1af1b149 100644 --- a/src/components/PullToRefreshIndicator.tsx +++ b/src/components/PullToRefreshIndicator.tsx @@ -14,7 +14,6 @@ const PullToRefreshIndicator: React.FC = ({ isPulling, pullDistance, canRefresh, - isRefreshing, threshold = 80 }) => { // Only show when actively pulling, not when refreshing