Skip to content

Commit d7f3a4a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cbc878d commit d7f3a4a

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

frontend/src/plugins/impl/__tests__/FormPlugin.test.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@
33
import { fireEvent, render, screen, waitFor } from "@testing-library/react";
44
import { beforeAll, describe, expect, it, vi } from "vitest";
55
import { SetupMocks } from "@/__mocks__/common";
6-
import { type FormWrapperProps, FormWrapper } from "../FormPlugin";
6+
import { FormWrapper, type FormWrapperProps } from "../FormPlugin";
77

88
beforeAll(() => {
99
SetupMocks.resizeObserver();
1010
});
1111

12-
function renderForm(
13-
overrides: Partial<FormWrapperProps<string>> = {},
14-
) {
12+
function renderForm(overrides: Partial<FormWrapperProps<string>> = {}) {
1513
const setValue = vi.fn();
1614
const validate = vi.fn().mockResolvedValue(null);
1715

0 commit comments

Comments
 (0)