Skip to content

Commit

Permalink
Fix sign ups failing halfway through saga (#7240)
Browse files Browse the repository at this point in the history
  • Loading branch information
DejayJD authored Jan 18, 2024
1 parent f355286 commit bf9d2ea
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/web/src/common/store/pages/signon/sagas.js
Original file line number Diff line number Diff line change
Expand Up @@ -475,9 +475,7 @@ function* signUp() {

const isNativeMobile = yield getContext('isNativeMobile')

const isSignUpRedesignEnabled = yield call(
getFeatureEnabled(FeatureFlags.SIGN_UP_REDESIGN)
)
const isSignUpRedesignEnabled = getFeatureEnabled(FeatureFlags.SIGN_UP_REDESIGN)

if (isNativeMobile && !isSignUpRedesignEnabled) {
yield put(requestPushNotificationPermissions())
Expand Down

0 comments on commit bf9d2ea

Please sign in to comment.