Skip to content

Commit

Permalink
Add missing spaces in effect description
Browse files Browse the repository at this point in the history
  • Loading branch information
yazadzhy committed Oct 1, 2024
1 parent 3bc6329 commit 4806e77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions effect/effect-description.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ export function EffectDescription({effect, operation}) {
case 'accountRemoved':
return <>Account <AccountAddress account={effect.source}/> removed</>
case 'accountCredited':
return <><Amount asset={effect.asset} amount={effect.amount} adjust/> credited to
return <><Amount asset={effect.asset} amount={effect.amount} adjust/> credited to&nbsp;
{effect.source.startsWith('C') ? 'contract' : 'account'} <AccountAddress account={effect.source}/></>
case 'accountDebited':
return <><Amount asset={effect.asset} amount={effect.amount} adjust/> debited from
return <><Amount asset={effect.asset} amount={effect.amount} adjust/> debited from&nbsp;
{effect.source.startsWith('C') ? 'contract' : 'account'} <AccountAddress account={effect.source}/></>
case 'accountThresholdsUpdated':
return <>Account <AccountAddress account={effect.source}/> set thresholds to {effect.thresholds.join('/')}</>
Expand Down

0 comments on commit 4806e77

Please sign in to comment.