complete forgot password and fix bug

This commit is contained in:
Alihaghighattalab
2024-08-05 18:09:37 +03:30
parent 03fa343f03
commit a4e648363f
6 changed files with 43 additions and 12 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ type Props = {
export const ErrorComponent: FC<Props> = ({ message, show }) => {
return (
show && (
<p className="w-full text-right text-xs text-red-500 font-medium -mt-5">
<p className="w-full text-right text-xs text-red-500 font-medium mt-2">
* {message}
</p>
)