Entfernen Sie Element am Index, ohne das ursprüngliche Array zu ändern
const newArray = [
...state.slice(0, action.index),
...state.slice(action.index + 1, state.length)
];
Smiling Skunk