Skip to content

Commit

Permalink
Merge branch 'fix-chain-name' into bsc-bridge
Browse files Browse the repository at this point in the history
  • Loading branch information
Lbqds committed Aug 7, 2024
2 parents 23a1c3b + 711183d commit cde3d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridge_ui/src/components/TransactionProgress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export default function TransactionProgress({
<div className={classes.root}>
<Typography variant="body2" className={classes.message}>
{!isFinalized
? t('Waiting for finality on {{ chainName }} which may take up to 15 minutes.')
? `${t('Waiting for finality on {{ chainName }} which may take up to 15 minutes.', { chainName: CHAINS_BY_ID[chainId].name })}`
: `${t('Waiting for Wormhole Network consensus')}...`}
</Typography>
{!isFinalized ? (
Expand Down

0 comments on commit cde3d31

Please sign in to comment.