From d97b6d233390bcc646ff62315f504a0e47e79f84 Mon Sep 17 00:00:00 2001 From: juriczech Date: Fri, 17 May 2024 13:50:46 +0200 Subject: [PATCH] fix(suite-native): show address view only --- suite-native/receive/src/components/ShowAddressButtons.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suite-native/receive/src/components/ShowAddressButtons.tsx b/suite-native/receive/src/components/ShowAddressButtons.tsx index b9d3768949d..a468b6d4ced 100644 --- a/suite-native/receive/src/components/ShowAddressButtons.tsx +++ b/suite-native/receive/src/components/ShowAddressButtons.tsx @@ -28,7 +28,7 @@ export const ShowAddressButtons = ({ onShowAddress }: ShowAddressButtonsProps) = }; const handleShowAddress = () => { - if (isDeviceInViewOnlyMode) { + if (!isPortfolioTrackerDevice && isDeviceInViewOnlyMode) { setIsViewOnlyBottomSheetVisible(true); } else { onShowAddress();