diff --git a/packages/neuron-ui/src/components/Receive/index.tsx b/packages/neuron-ui/src/components/Receive/index.tsx
index a182a1ea2e..fe9a42fd6e 100644
--- a/packages/neuron-ui/src/components/Receive/index.tsx
+++ b/packages/neuron-ui/src/components/Receive/index.tsx
@@ -25,6 +25,7 @@ export const AddressQrCodeWithCopyZone = ({
onClick,
}: AddressTransformWithCopyZoneProps) => {
const [t] = useTranslation()
+ const { wallet } = useGlobalState()
const transformLabel = t(
isInShortFormat ? 'receive.turn-into-full-version-format' : 'receive.turn-into-deprecated-format'
)
@@ -85,10 +86,12 @@ export const AddressQrCodeWithCopyZone = ({
{transformLabel}
-
+ {!wallet.device && (
+
+ )}