From 5d33ba3dcb725136820b89870eefdf645ec98817 Mon Sep 17 00:00:00 2001 From: soukainna Date: Fri, 17 Feb 2023 17:24:10 +0100 Subject: [PATCH] fix the update profile err --- handlers/application/members.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers/application/members.go b/handlers/application/members.go index 586b4e4..7a9d8c6 100644 --- a/handlers/application/members.go +++ b/handlers/application/members.go @@ -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 }