Skip to content

Commit

Permalink
Fix default imports
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Jan 6, 2024
1 parent 00a3dd8 commit c7b47f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/desktop-client/src/components/common/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { type CSSProperties, styles, theme } from '../../style';
import { tokens } from '../../tokens';

import { Button } from './Button';
import Input from './Input';
import { Input } from './Input';
import Text from './Text';
import View from './View';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import ViewShow from '../../icons/v2/ViewShow';
import { type CSSProperties, styles, theme } from '../../style';
import { type CommonModalProps } from '../../types/modals';
import { Button } from '../common/Button';
import Menu from '../common/Menu';
import { Menu } from '../common/Menu';
import Modal from '../common/Modal';
import View from '../common/View';
import { Notes } from '../Notes';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import ViewShow from '../../icons/v2/ViewShow';
import { type CSSProperties, styles, theme } from '../../style';
import { type CommonModalProps } from '../../types/modals';
import { Button } from '../common/Button';
import Menu from '../common/Menu';
import { Menu } from '../common/Menu';
import Modal from '../common/Modal';
import View from '../common/View';
import { Notes } from '../Notes';
Expand Down

0 comments on commit c7b47f5

Please sign in to comment.