From 9a5abfb5f321fe5cc5b0d6bb9f2c5680fdeb5e68 Mon Sep 17 00:00:00 2001 From: Eric Xu Date: Wed, 10 Jul 2024 04:22:15 -0400 Subject: [PATCH] Remove unused imports --- src/__tests__/lib/utils.test.ts | 2 +- src/app/components/OptionsForm.tsx | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/__tests__/lib/utils.test.ts b/src/__tests__/lib/utils.test.ts index 2ebdae1..a6785a3 100644 --- a/src/__tests__/lib/utils.test.ts +++ b/src/__tests__/lib/utils.test.ts @@ -5,7 +5,7 @@ import { randomFromArray, randomFromSet, } from "@/lib/utils"; -import { describe, expect, it, test } from "vitest"; +import { describe, expect, it } from "vitest"; describe("randomFromSet()", () => { it("should throw an error when the set is empty", () => { diff --git a/src/app/components/OptionsForm.tsx b/src/app/components/OptionsForm.tsx index d288027..c2a53fe 100644 --- a/src/app/components/OptionsForm.tsx +++ b/src/app/components/OptionsForm.tsx @@ -7,8 +7,6 @@ import { Form, Input, Label, - Radio, - RadioGroup, Switch, TextField, } from "react-aria-components";