Skip to content

Commit

Permalink
Fix navigation pop for split screens
Browse files Browse the repository at this point in the history
Linked to #315
  • Loading branch information
lourou committed Aug 27, 2024
1 parent 8457105 commit b91b890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ConversationListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const ConversationListItem = memo(function ConversationListItem({
});
// Take the user back to wherever the conversation was restored "to"
// https://github.com/ephemeraHQ/converse-app/issues/315#issuecomment-2312903441
navigation.pop(2);
navigation.pop(isSplitScreen ? 1 : 2);
},
[translate("cancel")]: () => {},
};
Expand Down

0 comments on commit b91b890

Please sign in to comment.