Commit 4785c31e authored by Mark Harding's avatar Mark Harding

(fix): recurring wires not being set on init - resolves #298

parent 6b47ccf4
No related merge requests found
Pipeline #67404584 passed with stages
in 41 minutes and 32 seconds
......@@ -77,6 +77,7 @@ export class PlusSubscriptionComponent {
this.payment.period = period;
this.payment.amount = amount;
this.payment.recurring = true;
this.payment.entity_guid = '730071191229833224';
this.payment.receiver = this.blockchain.plus_address;
......
......@@ -191,7 +191,7 @@ export class WirePaymentsCreatorComponent {
}
setDefaults() {
this.wire.recurring = false;
this.wire.recurring = true;
let payloadType = localStorage.getItem('preferred-payment-method');
if (['onchain', 'offchain'].indexOf(payloadType) === -1) {
payloadType = 'offchain';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment