diff --git a/app/components/place-payment-methods.gjs b/app/components/place-payment-methods.gjs index dc0ddd2..77a0fa3 100644 --- a/app/components/place-payment-methods.gjs +++ b/app/components/place-payment-methods.gjs @@ -39,8 +39,8 @@ export default class PlacePaymentMethods extends Component { let description = 'No Bitcoin'; if (!isDenied) { description = this.payment.bitcoin.lightning - ? 'Bitcoin (Lightning)' - : 'Bitcoin (On-chain)'; + ? 'Bitcoin (Lightning) accepted' + : 'Bitcoin (On-chain) accepted'; } list.push({ id: 'bitcoin', diff --git a/tests/integration/components/place-payment-methods-test.gjs b/tests/integration/components/place-payment-methods-test.gjs index 913b96d..5230284 100644 --- a/tests/integration/components/place-payment-methods-test.gjs +++ b/tests/integration/components/place-payment-methods-test.gjs @@ -118,7 +118,7 @@ module('Integration | Component | place-payment-methods', function (hooks) { .doesNotHaveAttribute('title'); assert .dom('[data-test-payment-method="bitcoin"]') - .hasAttribute('aria-description', 'Bitcoin (Lightning)'); + .hasAttribute('aria-description', 'Bitcoin (Lightning) accepted'); assert .dom('[data-test-payment-method="bitcoin"] > .icon') .hasAttribute('style', /width:17px;height:22px;color:currentColor/);