Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/libs/actions/Link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -622,9 +622,9 @@ function openReportFromDeepLink(
}

const navigateHandler = (reportParam?: OnyxEntry<Report>) => {
// Skip if the user already left the deeplinked route.
// Skip if the user already is in the deeplinked route.
const deeplinkRoute = route as Route;
if (deeplinkRoute && !Navigation.isActiveRoute(deeplinkRoute)) {
if (deeplinkRoute && Navigation.isActiveRoute(deeplinkRoute)) {
return;
}
Comment thread
nkdengineer marked this conversation as resolved.

Expand Down
Loading