Skip to content

Commit fc3a624

Browse files
committed
fix import
1 parent b43b60a commit fc3a624

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/components/CellRendererComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
MeasureLayoutOnSuccessCallback,
1212
} from "react-native";
1313
import Animated, { cond, useValue } from "react-native-reanimated";
14-
import { useDraggableFlatListContext } from "../context/draggableFlatlistContext";
14+
import { useDraggableFlatListContext } from "../context/draggableFlatListContext";
1515
import { isAndroid, isIOS, isReanimatedV2, isWeb } from "../constants";
1616
import { useCellTranslate } from "../hooks/useCellTranslate";
1717
import { typedMemo } from "../utils";

src/components/DraggableFlatList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import AnimatedValueProvider, {
4040
useAnimatedValues,
4141
} from "../context/animatedValueContext";
4242
import RefProvider, { useRefs } from "../context/refContext";
43-
import DraggableFlatListProvider from "../context/draggableFlatlistContext";
43+
import DraggableFlatListProvider from "../context/draggableFlatListContext";
4444

4545
type RNGHFlatListProps<T> = Animated.AnimateProps<
4646
FlatListProps<T> & {

src/components/PlaceholderItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Animated, {
1010
cond,
1111
} from "react-native-reanimated";
1212
import { useAnimatedValues } from "../context/animatedValueContext";
13-
import { useDraggableFlatListContext } from "../context/draggableFlatlistContext";
13+
import { useDraggableFlatListContext } from "../context/draggableFlatListContext";
1414
import { useProps } from "../context/propsContext";
1515
import { useRefs } from "../context/refContext";
1616
import { useNode } from "../hooks/useNode";

src/components/RowItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useCallback, useRef } from "react";
2-
import { useDraggableFlatListContext } from "../context/draggableFlatlistContext";
2+
import { useDraggableFlatListContext } from "../context/draggableFlatListContext";
33
import { useRefs } from "../context/refContext";
44
import { RenderItem } from "../types";
55
import { typedMemo } from "../utils";

src/hooks/useCellTranslate.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { useRefs } from "../context/refContext";
1515
import { setupCell, springFill } from "../procs";
1616
import { useSpring } from "./useSpring";
1717
import { useNode } from "../hooks/useNode";
18-
import { useDraggableFlatListContext } from "../context/draggableFlatlistContext";
18+
import { useDraggableFlatListContext } from "../context/draggableFlatListContext";
1919

2020
type Params = {
2121
cellIndex: Animated.Value<number>;

0 commit comments

Comments
 (0)