diff --git a/src/components/ui/form/CustomForm.tsx b/src/components/ui/form/CustomForm.tsx index 5698924c..9fa65f50 100644 --- a/src/components/ui/form/CustomForm.tsx +++ b/src/components/ui/form/CustomForm.tsx @@ -4,7 +4,6 @@ import { Form } from 'reactstrap'; interface Props { children: ReactNode; onSubmit?: FormEventHandler; - key?: string; } /** * @@ -12,10 +11,6 @@ interface Props { * @param className?:string */ -export default function CustomForm({ children, onSubmit, key }: Props) { - return ( -
- {children} -
- ); +export default function CustomForm({ children, onSubmit }: Props) { + return
{children}
; }