From dcfaf2394a6fa41c3f936e221cc1df847f5a037a Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Tue, 17 Dec 2024 21:07:48 +0900 Subject: [PATCH] fix: imports --- src/internal/components/Draggable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internal/components/Draggable.tsx b/src/internal/components/Draggable.tsx index be98ecf16b..02b836f364 100644 --- a/src/internal/components/Draggable.tsx +++ b/src/internal/components/Draggable.tsx @@ -1,6 +1,6 @@ -import { zIndex } from '@/styles/constants'; -import { cn } from '@/styles/theme'; import { useCallback, useEffect, useState } from 'react'; +import { zIndex } from '../../styles/constants'; +import { cn } from '../../styles/theme'; type DraggableProps = { children: React.ReactNode;