Skip to content

Commit

Permalink
Fixed tests not passing
Browse files Browse the repository at this point in the history
  • Loading branch information
pablonortiz committed Nov 20, 2024
1 parent e300744 commit d5eb2c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/molecules/Carousel/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const useCarouselControls = ({
}: CarouselProps) => {
const [activePage, setActivePage] = useState(0);
const slider = useRef<ScrollView | null>(null);
const intervalId = useRef<number | null>(null);
const intervalId = useRef<any | number | null>(null);

const {width: screenWidth} = Dimensions.get('screen');
const width = customWidth ?? screenWidth;
Expand Down
1 change: 1 addition & 0 deletions src/components/organisms/SwipeItemSelectionList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const SwipeItemSelectionList: React.FC<SwipeItemSelectionListProps> = React.forw

return (
<ItemSelectionButton
key={id}
radioButton={radioButton}
leftSelection={leftSelection}
rightSelection={rightSelection}
Expand Down

0 comments on commit d5eb2c0

Please sign in to comment.