Skip to content

Commit

Permalink
fix: wrong imports
Browse files Browse the repository at this point in the history
Refs: #6808
  • Loading branch information
deleonio committed Sep 19, 2024
1 parent 3459006 commit 3c628d0
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 @@ -4,7 +4,7 @@ import { KolButton, KolTableStateful, createReactRenderElement } from '@public-u
import { SampleDescription } from '../SampleDescription';
import type { KoliBriTableDataType, KoliBriTableSelection } from '@public-ui/components';
import { getRoot } from '../../shares/react-roots';
import type { KoliBriTableCell } from '@public-ui/components/src/schema';
import type { KoliBriTableCell } from '@public-ui/components';

const DATA = [
{ id: '1001', name: 'Foo Bar', internalIdentifier: `AAA1001` },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { KolButton, KolTableStateful, createReactRenderElement } from '@public-u
import { SampleDescription } from '../SampleDescription';
import type { KoliBriTableDataType, KoliBriTableSelection } from '@public-ui/components';
import { getRoot } from '../../shares/react-roots';
import type { KoliBriTableCell } from '@public-ui/components/src/schema';
import type { KoliBriTableCell } from '@public-ui/components';

const DATA = [
{ id: '1001', name: 'Foo Bar', internalIdentifier: `AAA1001` },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { KolButton, KolTableStateless, createReactRenderElement } from '@public-
import { SampleDescription } from '../SampleDescription';
import type { KoliBriTableSelection } from '@public-ui/components';
import { getRoot } from '../../shares/react-roots';
import type { KoliBriTableCell } from '@public-ui/components/src/schema';
import type { KoliBriTableCell } from '@public-ui/components';

const DATA = [
{ id: '1001', name: 'Foo Bar', internalIdentifier: `AAA1001` },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { KolButton, KolTableStateless, createReactRenderElement } from '@public-
import { SampleDescription } from '../SampleDescription';
import type { KoliBriTableSelection } from '@public-ui/components';
import { getRoot } from '../../shares/react-roots';
import type { KoliBriTableCell } from '@public-ui/components/src/schema';
import type { KoliBriTableCell } from '@public-ui/components';

const DATA = [
{ id: '1001', name: 'Foo Bar', internalIdentifier: `AAA1001` },
Expand Down

0 comments on commit 3c628d0

Please sign in to comment.