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