@zeniai/client-epic-state 4.19.70-beta0AD → 4.19.70-beta1AD

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -317,11 +317,9 @@ const aiCfoView = createSlice({
317
317
  },
318
318
  deleteChatSession: {
319
319
  reducer(draft, action) {
320
- const { chatSessionId } = action.payload;
321
- draft.deleteChatSessionStateByChatSessionId[chatSessionId] = {
322
- fetchState: 'In-Progress',
323
- error: undefined,
324
- };
320
+ // No-op; session removed from state only when API completes (deleteChatSessionSuccess).
321
+ void draft;
322
+ void action;
325
323
  },
326
324
  prepare(chatSessionId) {
327
325
  return { payload: { chatSessionId } };