Skip to content

Commit

Permalink
fix return null
Browse files Browse the repository at this point in the history
  • Loading branch information
Skyweb331 committed May 29, 2024
1 parent e4a2d44 commit 2dd159d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ function OnboardingModalNavigator() {

useKeyboardShortcut(CONST.KEYBOARD_SHORTCUTS.ESCAPE, handleOuterClick, {shouldBubble: true});

if (!hasCompletedGuidedSetupFlow) {
return;
if (hasCompletedGuidedSetupFlow) {
return null;
}
return (
<NoDropZone>
Expand Down

0 comments on commit 2dd159d

Please sign in to comment.