removed unnccesary changes

This commit is contained in:
Trial
2025-03-29 14:17:50 +03:00
parent 0db9fc75dc
commit dce461b586

View File

@@ -98,8 +98,7 @@ export const forgotPassword = createAsyncThunk(
"auth/forgotPassword",
async (form, thunkApi) => {
try {
const newForm = {...form, email: form.toLowerCase()};
const res = await networkService.forgotPassword(newForm);
const res = await networkService.forgotPassword(form);
return res.data;
} catch (error) {
if (error.response.data) {