Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit d752ee2

Browse files
committed
Cleanup payment computed
1 parent 77bee0b commit d752ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/computed/payment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const ComputedPayment = store => {
1111
const { payment, settings } = store;
1212
const satAmount = toSatoshis(payment.amount, settings.unit);
1313
const satFee = toSatoshis(payment.fee, settings.unit);
14-
return toAmountLabel(satAmount + satFee, store.settings);
14+
return toAmountLabel(satAmount + satFee, settings);
1515
}),
1616
});
1717
};

0 commit comments

Comments
 (0)