fix: reset submission when convo clears

This commit is contained in:
Daniel Avila 2023-03-11 22:35:39 -05:00
parent 23de688bf3
commit f1aabfa543
8 changed files with 13 additions and 3 deletions

View file

@ -20,6 +20,9 @@ const currentSlice = createSlice({
},
setSubmission: (state, action) => {
state.submission = action.payload;
if (Object.keys(action.payload).length === 0) {
state.isSubmitting = false;
}
},
setStopStream: (state, action) => {
state.stopStream = action.payload;