Skip to content

Commit

Permalink
πŸ›: fix FormText test type error
Browse files Browse the repository at this point in the history
  • Loading branch information
itisAliRH committed Apr 16, 2024
1 parent 9e285ed commit e84658b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Form/Elements/FormText.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit e84658b

Please sign in to comment.