style: format

This commit is contained in:
codytseng 2025-11-07 10:54:04 +08:00
parent 9615a7e778
commit 0e550d2511
22 changed files with 52 additions and 38 deletions

View file

@ -11,7 +11,7 @@ export function getInvoiceDetails(invoice: string): { amount: number; descriptio
const _invoice = new Invoice({ pr: invoice }) // TODO: need to validate
return {
amount: _invoice.satoshi,
description: _invoice.description,
description: _invoice.description
}
}