From f7eacf58d1d450f2da45f9b696e5776ca1db2100 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Tue, 8 Sep 2026 15:28:33 -0600 Subject: [PATCH] Clear wording --- app/components/place-payment-methods.gjs | 4 ++-- tests/integration/components/place-payment-methods-test.gjs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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/);