fix the update profile err

This commit is contained in:
soukainna 2023-02-17 17:24:10 +01:00
parent af9626e2c4
commit 5d33ba3dcb
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ func (h *ApplicationHandler) MemberUpdate(w http.ResponseWriter, r *http.Request
return
}
http.Redirect(w, r, fmt.Sprintf("/app/profile/%s", resp.Account.Id), http.StatusFound)
http.Redirect(w, r, fmt.Sprintf("/app/members/%s", resp.Account.Id), http.StatusFound)
return
}