Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack Pope committed Jan 23, 2024
1 parent ec4149a commit ad13f39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-art/src/__tests__/ReactART-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ describe('ReactART', () => {
});

it('should have the correct lifecycle state', async () => {
let instance = <TestComponent />;
const instance = <TestComponent />;
const root = ReactDOMClient.createRoot(container);
await act(() => {
root.render(instance);
Expand All @@ -147,7 +147,7 @@ describe('ReactART', () => {
});

it('should render a reasonable SVG structure in SVG mode', async () => {
let instance = <TestComponent />;
const instance = <TestComponent />;
const root = ReactDOMClient.createRoot(container);
await act(() => {
root.render(instance);
Expand Down

0 comments on commit ad13f39

Please sign in to comment.