Added eslint

This commit is contained in:
MaxOvs19
2023-05-31 11:24:46 +03:00
parent fc8fc33733
commit 9e242ddf5d
40 changed files with 224 additions and 536 deletions

View File

@ -117,7 +117,7 @@ export const PartnerAddRequest = () => {
return skill.id;
}),
},
}).then((res) => {
}).then(() => {
navigate("/profile/requests");
});
} else {
@ -135,7 +135,7 @@ export const PartnerAddRequest = () => {
return skill.id;
}),
},
}).then((res) => {
}).then(() => {
navigate("/profile/requests");
});
}
@ -206,7 +206,7 @@ export const PartnerAddRequest = () => {
{openSpecializationList &&
Boolean(specializationList.length) && (
<div className="form__block__dropDown">
{specializationList.map((specialization, index) => {
{specializationList.map((specialization) => {
return (
<p
key={specialization.id}