From d8b987250495e38e01eb1a5b89d71f1114defc5a Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Wed, 11 Sep 2024 18:45:59 +0200 Subject: [PATCH] spot: spot jwt on signup --- frontend/app/duck/user.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/app/duck/user.js b/frontend/app/duck/user.js index 8a7f1ed48..695ac9bff 100644 --- a/frontend/app/duck/user.js +++ b/frontend/app/duck/user.js @@ -91,6 +91,7 @@ const reducer = (state = initialState, action = {}) => { return state .set('account', Account(action.data.user)) .set('scope', action.data.scopeState) + .set('spotJwt', action.data.spotJwt) case UPGRADE_ACCOUNT_SCOPE.SUCCESS: return state .set('scopeState', 2)