taler-typescript-core

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

commit 6053bff40dca85c05583c579fed345aeaf8accd4
parent 6c1ac18de944b2ae7d44b64c17b96dc1a03fda89
Author: Florian Dold <florian@dold.me>
Date:   Sat,  8 Aug 2026 00:24:43 +0200

fix FTBFS

Diffstat:
Mpackages/taler-wallet-webextension/src/hooks/useSettings.ts | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/packages/taler-wallet-webextension/src/hooks/useSettings.ts b/packages/taler-wallet-webextension/src/hooks/useSettings.ts @@ -38,6 +38,7 @@ export const codecForSettings = (): Codec<Settings> => .property("showExchangeManagement", codecForBoolean()) .property("selectTosFormat", codecForBoolean()) .property("showWalletActivity", codecForBoolean()) + .property("walletMigrateNativeDb", codecForBoolean()) .build("Settings"); const SETTINGS_KEY = buildStorageKey("wallet-settings", codecForSettings());