diff --git a/app/soapbox/reducers/list-adder.ts b/app/soapbox/reducers/list-adder.ts index f2ff96324..81e9bd644 100644 --- a/app/soapbox/reducers/list-adder.ts +++ b/app/soapbox/reducers/list-adder.ts @@ -32,7 +32,7 @@ export default function listAdderReducer(state: State = ReducerRecord(), action: return ReducerRecord(); case LIST_ADDER_SETUP: return state.withMutations(map => { - map.set('accountId', action.account.get('id')); + map.set('accountId', action.account.id); }); case LIST_ADDER_LISTS_FETCH_REQUEST: return state.setIn(['lists', 'isLoading'], true);