From 3afce199dedcf5137f5660bd16e323c1a13aa247 Mon Sep 17 00:00:00 2001 From: Ayush Sharma Date: Fri, 31 Jan 2025 15:18:47 +0530 Subject: [PATCH] fix: update password Signed-off-by: Ayush Sharma --- pkg/cmd/update/password.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/update/password.go b/pkg/cmd/update/password.go index 8d7545d..c76e6c9 100644 --- a/pkg/cmd/update/password.go +++ b/pkg/cmd/update/password.go @@ -76,7 +76,7 @@ var PasswordCmd = &cobra.Command{ resp, err := apis.SendRequest( apis.SendRequestParams{ - Endpoint: credentials.Endpoint + utils.AuthAPIPath + "/update/password/", + Endpoint: credentials.Endpoint + utils.AuthAPIPath + "/update/password", Token: "Bearer " + credentials.Token, }, payloadBytes,