From c00f008f3869942bb186e4006dbe309b8cf79454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bohdan=20Ju=C5=99=C3=AD=C4=8Dek?= <36101761+juriczech@users.noreply.github.com> Date: Fri, 17 May 2024 13:00:24 +0100 Subject: [PATCH] fix(suite-native): show address view only (#12461) --- 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();