Skip to content

Commit

Permalink
Update apps/router/src/guardian-ui/components/setup/screens/setConfig…
Browse files Browse the repository at this point in the history
…uration/BitcoinSettingsForm.tsx

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
Kodylow and coderabbitai[bot] authored Oct 24, 2024
1 parent f8048ac commit c5c6724
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const BitcoinSettingsForm: React.FC<BitcoinSettingsFormProps> = ({
</AlertTitle>
<AlertDescription>
{t('role-selector.bitcoin-node.not-synced-description', {
progress: bitcoinStatus * 100,
progress: typeof bitcoinStatus === 'number' ? bitcoinStatus * 100 : 0,
})}
</AlertDescription>
</Box>
Expand Down

0 comments on commit c5c6724

Please sign in to comment.