File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
web-marketplace/src/pages/BuyCredits Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -391,18 +391,24 @@ export const getCryptoCurrencyIconSrc = (
391391
392392 let href = '' ;
393393 if ( baseDenom === GRAVITY_USDC_DENOM )
394- href = 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/usdc.grv.png' ;
394+ href =
395+ 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/usdc.grv.png' ;
395396 // On mainnet, AXELAR_USDC_DENOM and USDC_DENOM base denoms have the same value: uusd
396397 // so we also use the bank denom to check whether it's USDC.axl (IBC) or native USDC
397398 if ( baseDenom === AXELAR_USDC_DENOM && ibcDenom )
398- href = 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/usdc.axl.png' ;
399+ href =
400+ 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/usdc.axl.png' ;
399401 if ( baseDenom === USDC_DENOM && ! ibcDenom )
400- href = 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/uusdc.png' ;
402+ href =
403+ 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/uusdc.png' ;
401404 if ( baseDenom === EEUR_DENOM )
402- href = 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/eeur.png' ;
405+ href =
406+ 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/eeur.png' ;
403407 if ( baseDenom === REGEN_DENOM )
404- href = 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/regen.png' ;
408+ href =
409+ 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/regen.png' ;
405410 if ( baseDenom === EVMOS_DENOM )
406- href = 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/evmos.png' ;
411+ href =
412+ 'https://regen-registry.s3.us-east-1.amazonaws.com/assets/icons/evmos.png' ;
407413 return href ;
408414} ;
You can’t perform that action at this time.
0 commit comments