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 4, 2024
1 parent 64b1515 commit 4f93c91
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { type CommonModalProps } from '../../types/modals';
import { Button } from '../common/Button';
import { Menu } from '../common/Menu';
import { Modal } from '../common/Modal';
import View from '../common/View';
import { View } from '../common/View';
import { Notes } from '../Notes';
import { Tooltip } from '../tooltips';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { type CommonModalProps } from '../../types/modals';
import { Button } from '../common/Button';
import { Menu } from '../common/Menu';
import { Modal } from '../common/Modal';
import View from '../common/View';
import { View } from '../common/View';
import { Notes } from '../Notes';
import { Tooltip } from '../tooltips';

Expand Down
2 changes: 1 addition & 1 deletion packages/desktop-client/src/components/modals/Notes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Check from '../../icons/v2/Check';
import { type CommonModalProps } from '../../types/modals';
import { Button } from '../common/Button';
import { Modal } from '../common/Modal';
import View from '../common/View';
import { View } from '../common/View';
import { Notes as NotesComponent } from '../Notes';

type NotesProps = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { stringToInteger } from 'loot-core/src/shared/util';

import { type CSSProperties, theme } from '../../style';
import { Input, type InputProps } from '../common/Input';
import View, { type ViewProps } from '../common/View';
import { View, type ViewProps } from '../common/View';
import { Tooltip } from '../tooltips';

import DateSelectLeft from './DateSelect.left.png';
Expand Down

0 comments on commit 4f93c91

Please sign in to comment.