From 1b68ec68fa34908331620a3842c30e5b65b1d49b Mon Sep 17 00:00:00 2001 From: Ty Date: Thu, 6 Jun 2024 08:40:50 -0400 Subject: [PATCH] Remove debugging --- hat/app/org/hatdex/hat/api/controllers/Authentication.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hat/app/org/hatdex/hat/api/controllers/Authentication.scala b/hat/app/org/hatdex/hat/api/controllers/Authentication.scala index e47270f3..5fc5f46e 100644 --- a/hat/app/org/hatdex/hat/api/controllers/Authentication.scala +++ b/hat/app/org/hatdex/hat/api/controllers/Authentication.scala @@ -323,7 +323,7 @@ class Authentication @Inject() ( var response = Ok( Json.toJson( SuccessResponse( - "TEST If the email you have entered is correct, you will shortly receive an email with password reset instructions" + "If the email you have entered is correct, you will shortly receive an email with password reset instructions" ) ) ) @@ -437,7 +437,7 @@ class Authentication @Inject() ( val claimHatRequest = request.body val email = request.dynamicEnvironment.ownerEmail - val response = Ok(Json.toJson(SuccessResponse("You will shortly receive an email with claim instructions AAA"))) + val response = Ok(Json.toJson(SuccessResponse("You will shortly receive an email with claim instructions"))) if (claimHatRequest.email == email) userService