diff --git a/packages/desktop-client/src/components/modals/CategoryGroupMenu.tsx b/packages/desktop-client/src/components/modals/CategoryGroupMenu.tsx index 2606c42c0a9..77b542eb37d 100644 --- a/packages/desktop-client/src/components/modals/CategoryGroupMenu.tsx +++ b/packages/desktop-client/src/components/modals/CategoryGroupMenu.tsx @@ -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'; diff --git a/packages/desktop-client/src/components/modals/CategoryMenu.tsx b/packages/desktop-client/src/components/modals/CategoryMenu.tsx index 9cf90293a08..5a01d1ea96e 100644 --- a/packages/desktop-client/src/components/modals/CategoryMenu.tsx +++ b/packages/desktop-client/src/components/modals/CategoryMenu.tsx @@ -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'; diff --git a/packages/desktop-client/src/components/modals/Notes.tsx b/packages/desktop-client/src/components/modals/Notes.tsx index 89bc10f179e..3b8c5b98a4f 100644 --- a/packages/desktop-client/src/components/modals/Notes.tsx +++ b/packages/desktop-client/src/components/modals/Notes.tsx @@ -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 = { diff --git a/packages/desktop-client/src/components/select/DateSelect.tsx b/packages/desktop-client/src/components/select/DateSelect.tsx index d0a6e9aa617..b4ae0a66c59 100644 --- a/packages/desktop-client/src/components/select/DateSelect.tsx +++ b/packages/desktop-client/src/components/select/DateSelect.tsx @@ -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';