web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

commit f570b30c0ec0875f805fda32ff631394bd3d6203
parent e59c9a16dbb3ad397e20baa904eaf84d62d2a9ca
Author: triesap <137732411+triesap@users.noreply.github.com>
Date:   Mon, 10 Feb 2025 12:32:46 +0000

client: correct keys api typo

Diffstat:
Mclient/src/keys/tauri.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client/src/keys/tauri.ts b/client/src/keys/tauri.ts @@ -3,7 +3,7 @@ import { err_msg, is_pass_response, is_result_response, is_results_response, lib import { invoke } from '@tauri-apps/api/core'; import type { IClientKeys, IClientKeysNostrAddResolve, IClientKeysNostrCreateResolve, IClientKeysNostrDeleteResolve, IClientKeysNostrKeystoreResetResolve, IClientKeysNostrReadAllResolve, IClientKeysNostrReadResolve } from './types'; -export class TaurIClientKeys implements IClientKeys { +export class TauriClientKeys implements IClientKeys { private async command(cmd: string, opts?: any): Promise<any> { return await invoke<any>(cmd, opts ? opts : undefined); };