add job title character length reduced to 80 #806

Merged
ameye merged 1 commits from addjob-title into master 2024-10-02 17:09:32 +00:00
@@ -63,7 +63,7 @@ export default function ForgotPassword() {
setResetLoading(true);
try {
const res = await userApi.StartResetPassword(reqData);
if (res.status === 200 && res?.data?.internal_return > 0) {
if (res.status === 200 && res?.data?.internal_return >= 0) {
setMsgSuccess(true);
setMail("");
setValue(false);