Используй findIndex:
const index = state.findIndex( ({stepConditions})=>
stepConditions.active
);
Потом проставь active = false;
state[index]stepConditions.active = false;
Потом найди элемент индекс которого равен index + 1 и присвой
state[index+1]stepConditions.active = true;