From 71c0a29c613c7cea25929f94ab6d18ea5036d0b4 Mon Sep 17 00:00:00 2001 From: Vins Date: Mon, 4 Nov 2024 11:28:40 +0100 Subject: [PATCH] Fixed error popup --- src/app/api/idnot/UserController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/idnot/UserController.ts b/src/app/api/idnot/UserController.ts index 41cfb63a..0eb744c5 100644 --- a/src/app/api/idnot/UserController.ts +++ b/src/app/api/idnot/UserController.ts @@ -50,7 +50,7 @@ export default class UserController extends ApiController { if (!user) { console.error("User not found"); - this.httpUnauthorized(response, "User not found"); + this.httpUnauthorized(response, "Email not found"); return; }