feat: native context menu

This commit is contained in:
reya
2024-06-17 15:31:59 +07:00
parent 843895d876
commit d01cf8319d
10 changed files with 192 additions and 280 deletions

View File

@@ -150,7 +150,7 @@ export class LumeEvent {
}
public async idAsBech32() {
const query = await commands.eventToBech32(this.id, []);
const query = await commands.eventToBech32(this.id);
if (query.status === "ok") {
return query.data;
@@ -160,7 +160,7 @@ export class LumeEvent {
}
public async pubkeyAsBech32() {
const query = await commands.userToBech32(this.pubkey, []);
const query = await commands.userToBech32(this.pubkey);
if (query.status === "ok") {
return query.data;