From 4420e4d0fed28fc30eb444a4b23a0c4cd7c8b5a9 Mon Sep 17 00:00:00 2001 From: yohlo Date: Sun, 12 Jul 2026 21:30:51 -0700 Subject: [PATCH] merge --- src/features/core/components/pullable.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/features/core/components/pullable.tsx b/src/features/core/components/pullable.tsx index 7cccd14..0590c86 100644 --- a/src/features/core/components/pullable.tsx +++ b/src/features/core/components/pullable.tsx @@ -8,12 +8,7 @@ import { useLocation } from "@tanstack/react-router"; const THRESHOLD = 80; -interface PullableProps extends PropsWithChildren { - scrollPosition: { x: number, y: number }; - onScrollPositionChange: (position: { x: number, y: number }) => void; -} - -const Pullable: React.FC = ({ children, scrollPosition, onScrollPositionChange }) => { +const Pullable: React.FC = ({ children }) => { const height = useAppShellHeight(); const [isRefreshing, setIsRefreshing] = useState(false); const [scrolling, setScrolling] = useState(false);