diff --git a/apps/dot-voting/app/components/ProgressBarThick.js b/apps/dot-voting/app/components/ProgressBarThick.js index 0a4fce2b2..8a6c87da5 100644 --- a/apps/dot-voting/app/components/ProgressBarThick.js +++ b/apps/dot-voting/app/components/ProgressBarThick.js @@ -20,7 +20,15 @@ const ProgressBar = ({ progress, label, hasBalance = false, balanceSplit = '' }) color={theme.textSecondary} style={{ paddingRight: '4px', textAlign: 'right' }} > - {balanceSplit} • {Math.round(progress * 100)}% + {hasBalance ? ( + + {balanceSplit} • {Math.round(progress * 100)}% + + ) : ( + + {Math.round(progress * 100)}% + + )} )}