Skip to content

Commit

Permalink
hotfix(publicroom): Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
daordonez11 committed Jun 19, 2023
1 parent b031947 commit 2332530
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libs/Navigation/NavigationRoot.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function NavigationRoot(props) {

const updateSavedNavigationStateAndLogRoute = (state) => {
if (!state) {
return
return;
}
navigationStateRef.current = state;
props.updateCurrentReportId(state);
Expand Down
2 changes: 1 addition & 1 deletion src/libs/Navigation/getTopmostReportId.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import lodashGet from 'lodash/get';
*/
function getTopmostReportId(state) {
if (!state) {
return
return;
}
const topmostCentralPane = lodashFindLast(state.routes, (route) => route.name === 'CentralPaneNavigator');

Expand Down

0 comments on commit 2332530

Please sign in to comment.