fix jsx imports

This commit is contained in:
Alessio Gravili
2024-03-20 10:41:30 -04:00
parent e73220e069
commit ee2b6d3b85
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import type { GenerateViewMetadata } from '../Root/index.jsx'
import type { GenerateViewMetadata } from '../Root/index.js'
import { meta } from '../../utilities/meta.js'

View File

@@ -24,7 +24,7 @@ import { SelectAllStatus, useSelection } from '../../providers/Selection/index.j
import { useTranslation } from '../../providers/Translation/index.js'
import { getFormState } from '../../utilities/getFormState.js'
import { Drawer, DrawerToggler } from '../Drawer/index.js'
import { FieldSelect } from '../FieldSelect/index.jsx'
import { FieldSelect } from '../FieldSelect/index.js'
import './index.scss'
const baseClass = 'edit-many'

View File

@@ -27,7 +27,7 @@ import { DeleteMany } from '../DeleteMany/index.js'
import { EditMany } from '../EditMany/index.js'
import { Pill } from '../Pill/index.js'
import { PublishMany } from '../PublishMany/index.js'
import { SearchFilter } from '../SearchFilter/index.jsx'
import { SearchFilter } from '../SearchFilter/index.js'
import { UnpublishMany } from '../UnpublishMany/index.js'
import { WhereBuilder } from '../WhereBuilder/index.js'
import validateWhereQuery from '../WhereBuilder/validateWhereQuery.js'