Skip to content

Commit

Permalink
chore: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gunnartorfis committed Sep 5, 2024
1 parent 2a87a60 commit 5e80ef1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/animations.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { withTiming } from 'react-native-reanimated';
import { easeInOutCubic, easeOutCirc } from 'src/easings';
import { easeInOutCubic, easeOutCirc } from './easings';
import { useToastContext } from './context';
import type { ToastPosition } from './types';

Expand Down
2 changes: 1 addition & 1 deletion src/gestures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Animated, {
useSharedValue,
withTiming,
} from 'react-native-reanimated';
import { easeInOutCircFn } from 'src/easings';
import { easeInOutCircFn } from './easings';
import { useToastContext } from './context';

const { width: WINDOW_WIDTH } = Dimensions.get('window');
Expand Down
2 changes: 1 addition & 1 deletion src/toast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useToastContext } from './context';
import { ToastSwipeHandler } from './gestures';
import { type ToastProps } from './types';
import { useColors } from './use-colors';
import { toast } from 'src/toast-fns';
import { toast } from './toast-fns';

export const Toast: React.FC<ToastProps> = ({
id,
Expand Down

0 comments on commit 5e80ef1

Please sign in to comment.