diff --git a/frontend/app/duck/user.js b/frontend/app/duck/user.js index cc65352fb..44aff9d1c 100644 --- a/frontend/app/duck/user.js +++ b/frontend/app/duck/user.js @@ -159,12 +159,12 @@ export default withRequestState( export const upgradeScope = () => ({ types: UPGRADE_ACCOUNT_SCOPE.toArray(), - call: (client) => client.post('/account/scope', { scope: 'full' }), + call: (client) => client.post('/account/scope', { scope: 2 }), }) export const downgradeScope = () => ({ types: DOWNGRADE_ACCOUNT_SCOPE.toArray(), - call: (client) => client.post('/account/scope', { scope: 'spot' }), + call: (client) => client.post('/account/scope', { scope: 1 }), }) export const login = (params) => ({