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);