This commit is contained in:
Ren Amamiya
2023-07-26 09:26:40 +07:00
parent 89dd4f5c9d
commit f52ea04541
13 changed files with 69 additions and 140 deletions

View File

@@ -23,7 +23,7 @@ export function NoteZap({ id }: { id: string }) {
};
const createZapRequest = async () => {
const res = await createZap(event as NostrEvent, amount);
const res = await createZap(event as unknown as NostrEvent, amount);
if (res) setInvoice(res);
};