mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
NFC: Fix error display (#5305)
Simple fix, the wrong variable was used. Fixes #5298.
This commit is contained in:
parent
019ac7ae31
commit
445e1b7bd9
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ Vue.component("lnurl-withdraw-checkout", {
|
|||
if (response.ok) {
|
||||
this.successMessage = result;
|
||||
} else {
|
||||
this.reportNfcError(error);
|
||||
this.reportNfcError(result);
|
||||
}
|
||||
} catch (error) {
|
||||
this.reportNfcError(error);
|
||||
|
|
Loading…
Add table
Reference in a new issue