taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 9c8904a2a56c121e383d3432f6f76668b445083e
parent c8d6a37e2c54e0c1c4e56759017b0623ce9851cb
Author: Sebastian <sebasjm@gmail.com>
Date:   Tue, 27 May 2025 07:15:22 -0300

fix #10034

Diffstat:
Mpackages/aml-backoffice-ui/src/pages/Dashboard.tsx | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/packages/aml-backoffice-ui/src/pages/Dashboard.tsx b/packages/aml-backoffice-ui/src/pages/Dashboard.tsx @@ -169,7 +169,8 @@ function labelForEvent( case AmlSpaDialect.TOPS: return labelForEvent_tops(name as any, i18n); case AmlSpaDialect.GLS: - return labelForEvent_gls(name as GLS_AmlEventsName, i18n); + // return labelForEvent_gls(name as GLS_AmlEventsName, i18n); + return labelForEvent_tops(name as any, i18n); case AmlSpaDialect.TESTING: return labelForEvent_tops(name as any, i18n); default: { @@ -235,7 +236,8 @@ function descriptionForEvent( case AmlSpaDialect.TOPS: return descriptionForEvent_tops(name as any, i18n); case AmlSpaDialect.GLS: - return descriptionForEvent_gls(name as GLS_AmlEventsName, i18n); + return descriptionForEvent_tops(name as any, i18n); + // return descriptionForEvent_gls(name as GLS_AmlEventsName, i18n); case AmlSpaDialect.TESTING: return descriptionForEvent_tops(name as any, i18n); default: {