diff --git a/tests/components/AddProviderDialog.test.tsx b/tests/components/AddProviderDialog.test.tsx
index 5dc76ad..9573537 100644
--- a/tests/components/AddProviderDialog.test.tsx
+++ b/tests/components/AddProviderDialog.test.tsx
@@ -4,7 +4,9 @@ import { AddProviderDialog } from "@/components/providers/AddProviderDialog";
import type { ProviderFormValues } from "@/components/providers/forms/ProviderForm";
vi.mock("@/components/ui/dialog", () => ({
- Dialog: ({ children }: { children: React.ReactNode }) =>
{children}
,
+ Dialog: ({ children }: { children: React.ReactNode }) => (
+ {children}
+ ),
DialogContent: ({ children }: { children: React.ReactNode }) => (
{children}
),
@@ -25,7 +27,11 @@ vi.mock("@/components/ui/dialog", () => ({
let mockFormValues: ProviderFormValues;
vi.mock("@/components/providers/forms/ProviderForm", () => ({
- ProviderForm: ({ onSubmit }: { onSubmit: (values: ProviderFormValues) => void }) => (
+ ProviderForm: ({
+ onSubmit,
+ }: {
+ onSubmit: (values: ProviderFormValues) => void;
+ }) => (