Skip to content

Commit

Permalink
Correct logic for expectedSheetContent.
Browse files Browse the repository at this point in the history
  • Loading branch information
nriedman committed Dec 3, 2024
1 parent 1c976de commit 77c3cda
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ENGAGEHF/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ struct ContentView: View {
return .auth
}
guard FeatureFlags.disableFirebase
|| (account?.details?.isIncomplete ?? true
&& account?.details?.invitationCode != nil) else {
|| (!(account?.details?.isIncomplete ?? true) && (account?.details?.invitationCode != nil)) else {
return .auth
}
return nil
Expand Down

0 comments on commit 77c3cda

Please sign in to comment.