taler-typescript-core

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

commit e36a2605746e1b00f2e63de2c14f05481ba9b4c6
parent 8bde9bb1a8a4687b9c888db2a91524d168953d31
Author: Sebastian <sebasjm@taler-systems.com>
Date:   Fri,  9 Jan 2026 20:34:18 -0300

fix FTBFS

Diffstat:
Mpackages/merchant-backoffice-ui/src/paths/admin/create/Create.stories.tsx | 2+-
Mpackages/merchant-backoffice-ui/src/paths/admin/create/stories.tsx | 2+-
Mpackages/taler-util/src/operation.ts | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/packages/merchant-backoffice-ui/src/paths/admin/create/Create.stories.tsx b/packages/merchant-backoffice-ui/src/paths/admin/create/Create.stories.tsx @@ -55,7 +55,7 @@ function createExample<Props>( num_fractional_trailing_zero_digits: 1, }, }, - report_generators: {}, + report_generators: [], default_wire_transfer_rounding_interval: RoundingInterval.NONE, default_pay_delay: { d_us: "forever" }, have_donau: false, diff --git a/packages/merchant-backoffice-ui/src/paths/admin/create/stories.tsx b/packages/merchant-backoffice-ui/src/paths/admin/create/stories.tsx @@ -55,7 +55,7 @@ function createExample<Props>( num_fractional_trailing_zero_digits: 1, }, }, - report_generators: {}, + report_generators: [], default_wire_transfer_rounding_interval: RoundingInterval.NONE, default_pay_delay: { d_us: "forever" }, have_donau: false, diff --git a/packages/taler-util/src/operation.ts b/packages/taler-util/src/operation.ts @@ -292,7 +292,7 @@ export function alternativeOrThrow<Error, Body, Alt>( resp: | OperationOk<Body> | OperationAlternative<Error, Alt> - | OperationFail<Error>, + | OperationFail<unknown>, s: Error, ): Alt { if (isOperationOk(resp)) {