Skip to content

Commit

Permalink
Merge pull request #3 from bitpay/SP-713
Browse files Browse the repository at this point in the history
SP-713 Remove '_m' from image URLs
  • Loading branch information
bobbrodie authored Oct 9, 2023
2 parents 185fbaa + 4519cad commit 4b0cc5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const createWalletCurrency = (currency) => {
currencyWrapper.classList.add(...currencyWrapperClassLists);
currencyCode.textContent = currency.code;
currencyCode.classList.add(...currencyCodeClassLists);
currencyImage.src = currency.image;
currencyImage.src = currency.image.replace('_m', '');
currencyImage.classList.add(...currencyImageClassLists);
currencyWrapper.appendChild(currencyImage);
currencyWrapper.appendChild(currencyCode);
Expand Down

0 comments on commit 4b0cc5a

Please # to comment.