in Output/GPT4o_0806/JS/contextual_experiment/translate_to_react/1732100097/src/store/todoSlice.ts [13:22]
id: nanoid(),
title: action.payload,
completed: false,
};
state.push(newTodo);
localStorage.setItem('todos-react', JSON.stringify(state));
},
toggleTodo: (state, action: PayloadAction<string>) => {
const todo = state.find(todo => todo.id === action.payload);
if (todo) {