From 9511270b71462a3ac761bc6731164bbc73354509 Mon Sep 17 00:00:00 2001 From: Braeden Sowinski Date: Mon, 13 Jun 2022 13:50:58 -0700 Subject: [PATCH] minor fixed --- controllers/updateController.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controllers/updateController.go b/controllers/updateController.go index f4a5fd1..d744688 100644 --- a/controllers/updateController.go +++ b/controllers/updateController.go @@ -2376,7 +2376,7 @@ func UpdateAdminName(c *fiber.Ctx) error { cancel() return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ "success": false, - "message": "the admin password could not be updated", + "message": "the admin could not be updated", "error": updateErr, }) } @@ -2452,7 +2452,7 @@ func UpdateAdminEmail(c *fiber.Ctx) error { cancel() return c.Status(fiber.StatusInternalServerError).JSON(fiber.Map{ "success": false, - "message": "the admin password could not be updated", + "message": "the admin could not be updated", "error": updateErr, }) }