commit 40b4850b6392c5bd0edd39cbeccb6df7979255d6
parent 73b5edde6b404c2e3e770eb3ad3f041485321c01
Author: Sebastian <sebasjm@taler-systems.com>
Date: Tue, 21 Apr 2026 19:48:25 -0300
show simple message when the exchange aml process fail with 500
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/packages/kyc-ui/src/pages/FillForm.tsx b/packages/kyc-ui/src/pages/FillForm.tsx
@@ -141,6 +141,8 @@ function ShowForm({
switch (fail.case) {
case HttpStatusCode.PayloadTooLarge:
return i18n.str`The form is too big for the server, try uploading smaller files.`;
+ case HttpStatusCode.InternalServerError:
+ return i18n.str`There was a problem processing your request. Please try again later.`;
case HttpStatusCode.NotFound:
return i18n.str`The account was not found`;
case HttpStatusCode.Conflict: