From 4b62a2fd0c3a70f51ccd0c33ab671dbae24e34d2 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Tue, 3 Sep 2024 16:56:06 +0200 Subject: [PATCH] reset onboarding state on scope upgrade --- frontend/app/duck/user.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/app/duck/user.js b/frontend/app/duck/user.js index 44aff9d1c..8a7f1ed48 100644 --- a/frontend/app/duck/user.js +++ b/frontend/app/duck/user.js @@ -94,7 +94,6 @@ const reducer = (state = initialState, action = {}) => { case UPGRADE_ACCOUNT_SCOPE.SUCCESS: return state .set('scopeState', 2) - .set('onboarding', true) case DOWNGRADE_ACCOUNT_SCOPE.SUCCESS: return state .set('scopeState', 1)