From a08c55ec41973c74cb8aa5924b3a4864bb02c52f Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Sat, 10 Aug 2024 03:24:07 +0200 Subject: [PATCH] Remove GenericForm import from App.tsx GenericForm was imported but never used in App.tsx. This clean-up helps in maintaining the codebase by removing unnecessary imports, thus enhancing readability and reducing potential confusion. --- src/App.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index b29f881..5598859 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -6,7 +6,6 @@ import Footer from "./components/footer/footer"; import VerifyMail from "./components/verify_email/verify_mail"; import ThankYou from "./components/verify_email/thank_you"; import DEBUG from "./components/DEBUG/DEBUG"; -import GenericForm from "./components/form/genericForm"; import {getFormProperties} from "./components/form/formData"; import {FormProperties} from "./components/form/formInterfaces"; import FormActiveRedirect from "./components/form/formActiveRedirect";