fix: change statement to more readable

This commit is contained in:
RadoslavDimchev 2023-11-30 22:41:35 +02:00
parent e652acc6ee
commit b5777ca0d7
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ const PairDevice = () => {
subtitle="Pair your existing device to the Nimbus Node Manager" subtitle="Pair your existing device to the Nimbus Node Manager"
/> />
{isPaired ? <PairedSuccessfully /> : <GenerateId isAwaitingPairing={isAwaitingPairing} />} {isPaired ? <PairedSuccessfully /> : <GenerateId isAwaitingPairing={isAwaitingPairing} />}
{!isPaired && ( {isPaired === false && (
<SyncStatus <SyncStatus
isPairing={isPairing} isPairing={isPairing}
isAwaitingPairing={isAwaitingPairing} isAwaitingPairing={isAwaitingPairing}