(
state,
action: PayloadAction<{ messageId: string; contentView: string }>,
)
| 19 | state.tab = action.payload; |
| 20 | }, |
| 21 | setContentViewFor( |
| 22 | state, |
| 23 | action: PayloadAction<{ messageId: string; contentView: string }>, |
| 24 | ) { |
| 25 | state.contentViewFor[action.payload.messageId] = |
| 26 | action.payload.contentView; |
| 27 | }, |
| 28 | }, |
| 29 | }); |
| 30 |
no outgoing calls
no test coverage detected
searching dependent graphs…