diff --git a/src/pages/PairDevice/PairDevice.tsx b/src/pages/PairDevice/PairDevice.tsx index 34ecbeb1..d543a4d7 100644 --- a/src/pages/PairDevice/PairDevice.tsx +++ b/src/pages/PairDevice/PairDevice.tsx @@ -10,6 +10,7 @@ import PairedSuccessfully from './PairedSuccessfully' import CreateAvatar from '../../components/General/CreateAvatar/CreateAvatar' import GenerateId from './GenerateId' import Header from '../../components/General/Header' +import ConnectExistingInstance from '../ConnectExistingInstance/ConnectExistingInstance' const PairDevice = () => { const [isAwaitingPairing, setIsAwaitingPairing] = useState(false) @@ -33,13 +34,23 @@ const PairDevice = () => { title="Connect to existing Nimbus Instance" subtitle="Pair your existing device to the Nimbus Node Manager" /> - {isPaired ? : } - {isPaired === false && ( - + {isConnectingViaIp ? ( + + ) : ( + <> + {isPaired ? ( + + ) : ( + + )} + {isPaired === false && ( + + )} + )} {isPaired === false && (