diff options
Diffstat (limited to 'src/components/profile/ProfilePreview.tsx')
-rw-r--r-- | src/components/profile/ProfilePreview.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/profile/ProfilePreview.tsx b/src/components/profile/ProfilePreview.tsx index c527746a..ec0be50c 100644 --- a/src/components/profile/ProfilePreview.tsx +++ b/src/components/profile/ProfilePreview.tsx @@ -132,11 +132,11 @@ const ProfilePreview: React.FC<ProfilePreviewProps> = ({ loadProfile(user.id, user.username); updateMoments(true); if (!isComment) { - navigation.navigate('Profile', { + navigation.push('Profile', { isProfileView: true, }); } else { - navigation.navigate('ProfileView', { + navigation.push('ProfileView', { isProfileView: true, }); } |