From 5e1eb84f34dbc8f81af757f8e556814e4eaeafcf Mon Sep 17 00:00:00 2001 From: Petr Konecny Date: Mon, 4 Aug 2025 14:06:11 +0200 Subject: [PATCH] fix: updated import paths for useManualScroll hook --- src/components/HeroCarouselSlide/index.tsx | 2 +- src/context/SlideContext/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/HeroCarouselSlide/index.tsx b/src/components/HeroCarouselSlide/index.tsx index cbc1d25..9277416 100644 --- a/src/components/HeroCarouselSlide/index.tsx +++ b/src/components/HeroCarouselSlide/index.tsx @@ -2,7 +2,7 @@ import { View } from 'react-native' import { AutoCarouselSlideContext } from '../../context/SlideContext' import { useAutoScroll } from '../../hooks/useAutoScroll' import { useMemo } from 'react' -import { useManualScroll } from 'hooks/useManualScroll' +import { useManualScroll } from '../../hooks/useManualScroll' export const HeroCarouselSlide = ({ children, diff --git a/src/context/SlideContext/index.tsx b/src/context/SlideContext/index.tsx index a7139dd..c09bc39 100644 --- a/src/context/SlideContext/index.tsx +++ b/src/context/SlideContext/index.tsx @@ -1,6 +1,6 @@ import { createContext, useContext } from 'react' import { useAutoScroll } from '../../hooks/useAutoScroll' -import { useManualScroll } from 'hooks/useManualScroll' +import { useManualScroll } from '../../hooks/useManualScroll' export const AutoCarouselSlideContext = createContext<{ index: number