Skip to content

Commit

Permalink
fix(suite-native): show address view only
Browse files Browse the repository at this point in the history
  • Loading branch information
juriczech committed May 17, 2024
1 parent cbe0b2e commit d97b6d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suite-native/receive/src/components/ShowAddressButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const ShowAddressButtons = ({ onShowAddress }: ShowAddressButtonsProps) =
};

const handleShowAddress = () => {
if (isDeviceInViewOnlyMode) {
if (!isPortfolioTrackerDevice && isDeviceInViewOnlyMode) {
setIsViewOnlyBottomSheetVisible(true);
} else {
onShowAddress();
Expand Down

0 comments on commit d97b6d2

Please sign in to comment.