Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
michaldudak committed Nov 20, 2024
1 parent 32185a4 commit 438f084
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/mui-base/src/utils/getReactElementRef.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect } from 'chai';
import getReactElementRef from '@mui/utils/getReactElementRef';
import * as React from 'react';
import { expect } from 'chai';
import { getReactElementRef } from '@base-ui-components/react/utils/getReactElementRef';

describe('getReactElementRef', () => {
it('should return undefined when not used correctly', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-base/src/utils/useId.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import { expect } from 'chai';
import { createRenderer, screen } from '@mui/internal-test-utils';
import useId from '@mui/utils/useId';
import { useId } from '@base-ui-components/react/utils/useId';

interface TestComponentProps {
id?: string;
Expand Down

0 comments on commit 438f084

Please sign in to comment.