From e84658be4fb6de4d0f207afec1f20f407992e48b Mon Sep 17 00:00:00 2001 From: Alireza Heidari Date: Tue, 16 Apr 2024 14:44:13 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B:=20fix=20`FormText`=20test=20type?= =?UTF-8?q?=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/components/Form/Elements/FormText.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Form/Elements/FormText.test.ts b/client/src/components/Form/Elements/FormText.test.ts index 1b6568b59d4d..03754b7296ef 100644 --- a/client/src/components/Form/Elements/FormText.test.ts +++ b/client/src/components/Form/Elements/FormText.test.ts @@ -92,7 +92,7 @@ describe("FormText", () => { }); it("should be able to accept an empty array as value", async () => { - const v = []; + const v: string[] = []; const wrapper = await mountFormText({ value: v }); const el = wrapper.find("input");