Skip to content

Commit

Permalink
Merge pull request #13125 from bernhardoj/fix/12776
Browse files Browse the repository at this point in the history
fix can't open concierge page
  • Loading branch information
stitesExpensify authored Nov 30, 2022
2 parents ace20eb + c0c5497 commit 1f71832
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/ConciergePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ const propTypes = {
*/
const ConciergePage = (props) => {
if (_.has(props.session, 'authToken')) {
Report.navigateToConciergeChat();
Navigation.isDrawerReady().then(() => {
Report.navigateToConciergeChat();
});
} else {
Navigation.navigate();
}
Expand Down

0 comments on commit 1f71832

Please sign in to comment.