Fix destructuring bug in arg with default value

pull/10616/head
Jared Scheib 2017-12-15 16:03:04 -08:00
parent cb88e31a7a
commit 5bfed911b3
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ export const getMeAsync = ({shouldResetMe = false} = {}) => async dispatch => {
export const meChangeOrganizationAsync = (
url,
organization,
{userHasRoleInOrg = true}
{userHasRoleInOrg = true} = {}
) => async dispatch => {
dispatch(meChangeOrganizationRequested())
try {