Skip to content

Commit 0a3d856

Browse files
authored
Merge pull request #44 from Rikearon/fix/absolute-import-error
fix: convert absolute imports with 'src/*' to relative imports
2 parents c898436 + a9adbc7 commit 0a3d856

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Toasts.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import {
99
ToastAnimationConfig,
1010
ToastAnimationType,
1111
} from '../core/types';
12-
import { useScreenReader } from 'src/core/utils';
13-
import { useKeyboard } from 'src/utils';
12+
import { useScreenReader } from '../core/utils';
13+
import { useKeyboard } from '../utils';
1414

1515
type Props = {
1616
overrideDarkMode?: boolean;

0 commit comments

Comments
 (0)