+ {errors.map((error) => (
+
+ {error.message}
+
+ ))}
+
+ );
+};
diff --git a/src/modules/shared/form/FormErrorList.tsx b/src/modules/shared/form/FormErrorList.tsx
index 58fb334..2757d4e 100644
--- a/src/modules/shared/form/FormErrorList.tsx
+++ b/src/modules/shared/form/FormErrorList.tsx
@@ -2,7 +2,7 @@
import 'client-only';
import { useContext } from 'react';
-import { ErrorList } from '@/modules/shared/errors/ErrorList';
+import { ErrorList } from '@/modules/shared/error/ErrorList';
import { FormContext } from './Form';
export const FormErrorList = () => {