From 637caff37fe82e6551484067b78ea3383945fd37 Mon Sep 17 00:00:00 2001 From: IsaccoSordo Date: Mon, 20 Jan 2025 10:56:25 +0100 Subject: [PATCH] fix: default error message --- packages/beacon-ui/src/components/pair-other/pair-other.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/beacon-ui/src/components/pair-other/pair-other.tsx b/packages/beacon-ui/src/components/pair-other/pair-other.tsx index 7dcc03b37..e0159e59f 100644 --- a/packages/beacon-ui/src/components/pair-other/pair-other.tsx +++ b/packages/beacon-ui/src/components/pair-other/pair-other.tsx @@ -80,6 +80,11 @@ const PairOther: Component = (props: PairOtherProps) => { onClickLearnMore={props.onClickLearnMore} /> )} + {uiState() !== 'selection' && !qrData() && ( + + Not connected. + + )} ) }