Skip to content

Commit

Permalink
chore: cleanup imports
Browse files Browse the repository at this point in the history
  • Loading branch information
johnshift committed Aug 2, 2024
1 parent 45d8782 commit d34e572
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 5 additions & 3 deletions src/grants/components/grantee-item/grantee-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ import { BankIcon } from '@/shared/components/icons/bank-icon';
import { PaperbillIcon } from '@/shared/components/icons/paperbill-icon';

import { Grantee } from '@/grants/core/types';

import { DetailItemProps, DetailItems } from '../ui/base/detail-item';
import { CaretRightIcon } from '../ui/icons/caret-right-icon';
import {
DetailItemProps,
DetailItems,
} from '@/grants/components/ui/base/detail-item';
import { CaretRightIcon } from '@/grants/components/ui/icons/caret-right-icon';

import { ClientWrapper } from './client-wrapper';

Expand Down
2 changes: 1 addition & 1 deletion src/grants/components/grantee-list.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Grantee } from '../core/types';
import { Grantee } from '@/grants/core/types';

import { GranteeItem } from './grantee-item/grantee-item';

Expand Down
3 changes: 1 addition & 2 deletions src/shared/components/draggable-wrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ import { useDraggable } from 'react-use-draggable-scroll';

import { ClassValue } from 'clsx';

import { TEST_IDS } from '@/shared/core/constants';
import { cn } from '@/shared/utils/cn';

import { TEST_IDS } from '../core/constants';

interface Props {
children: ReactNode;
className?: ClassValue;
Expand Down
3 changes: 1 addition & 2 deletions src/shared/components/mobile-header.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { ClassValue } from 'clsx';

import { TEST_IDS } from '@/shared/core/constants';
import { cn } from '@/shared/utils/cn';

import { TEST_IDS } from '../core/constants';

import { MenuButton } from './menu-button';

interface Props {
Expand Down

0 comments on commit d34e572

Please sign in to comment.