fix(a11y): remove alt text for decorative image

Because:

* Adjacent text explains the meaning, making the additional text unnecessary.

This commit:

* Removes alt tag copy.

Closes FXA-3047
This commit is contained in:
Meghan Sardesai 2023-11-16 23:08:23 -05:00
Родитель 30565124e1
Коммит 2a79a90918
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9A46BEBC2E8A3934
1 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -90,11 +90,7 @@ export const PaymentConfirmation = ({
<header className="flex flex-col justify-center items-center row-divider-grey-200 text-center pb-8 mt-5 desktop:mt-2">
{accountExists ? (
<>
<img
className="max-h-12"
src={circledCheckbox}
alt="circled checkbox"
/>
<img className="max-h-12" src={circledCheckbox} alt="" />
<Localized id="payment-confirmation-thanks-heading">
<h2 className={h2classes}>Thank you!</h2>
</Localized>