From 4806e779f7d852dcbfd14045662ecc067d83bca2 Mon Sep 17 00:00:00 2001 From: yazadzhy Date: Tue, 1 Oct 2024 14:52:21 +0300 Subject: [PATCH] Add missing spaces in effect description --- effect/effect-description.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/effect/effect-description.js b/effect/effect-description.js index 6b20901..651dd51 100644 --- a/effect/effect-description.js +++ b/effect/effect-description.js @@ -25,10 +25,10 @@ export function EffectDescription({effect, operation}) { case 'accountRemoved': return <>Account removed case 'accountCredited': - return <> credited to + return <> credited to  {effect.source.startsWith('C') ? 'contract' : 'account'} case 'accountDebited': - return <> debited from + return <> debited from  {effect.source.startsWith('C') ? 'contract' : 'account'} case 'accountThresholdsUpdated': return <>Account set thresholds to {effect.thresholds.join('/')}