Skip to content

Commit

Permalink
remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgelhar committed Feb 27, 2024
1 parent 379e641 commit 4eca3a1
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/libs/Navigation/NavigationRoot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ function NavigationRoot({authenticated, lastVisitedPath, initialUrl, onReady}: N

const initialState = useMemo(
() => {
Log.info('Navigating lastVisitedPath', false, { lastVisitedPath: lastVisitedPath});

if (!lastVisitedPath) {
return undefined;
}
Expand All @@ -84,9 +82,6 @@ function NavigationRoot({authenticated, lastVisitedPath, initialUrl, onReady}: N
}

const {adaptedState} = getAdaptedStateFromPath(lastVisitedPath, linkingConfig.config);

Log.info('Navigating initialState', false, {initialState: initialState, lastVisitedPath: lastVisitedPath});

return adaptedState;
},
// eslint-disable-next-line react-hooks/exhaustive-deps
Expand Down

0 comments on commit 4eca3a1

Please sign in to comment.