Skip to content

Commit

Permalink
fix imports (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithluchtel authored Dec 13, 2024
1 parent 6b996e2 commit 870766c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/src/cartesian/components/XAxis.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import { StyleSheet } from "react-native";
import { Group, Line, Text, vec } from "@shopify/react-native-skia";
import { boundsToClip } from "lib/src/utils/boundsToClip";
import { boundsToClip } from "../../utils/boundsToClip";
import { DEFAULT_TICK_COUNT, downsampleTicks } from "../../utils/tickHelpers";
import type {
InputDatum,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/cartesian/components/YAxis.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import { StyleSheet } from "react-native";
import { Group, Line, Text, vec } from "@shopify/react-native-skia";
import { boundsToClip } from "lib/src/utils/boundsToClip";
import { boundsToClip } from "../../utils/boundsToClip";
import type {
InputDatum,
NumericalFields,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/cartesian/contexts/CartesianTransformContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import React, {
useState,
} from "react";
import { runOnJS, useAnimatedReaction } from "react-native-reanimated";
import { getTransformComponents } from "lib/src/utils/transform";
import { getTransformComponents } from "../../utils/transform";
import type { ChartTransformState } from "../hooks/useChartTransformState";

interface CartesianTransformContext {
Expand Down

0 comments on commit 870766c

Please sign in to comment.