Merge branch 'arc53:main' into main

This commit is contained in:
Digvijay Shelar 2024-05-29 15:04:16 +05:30 committed by GitHub
commit 10646b9b86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -151,7 +151,7 @@ export const conversationSlice = createSlice({
action: PayloadAction<{ index: number; query: Partial<Query> }>,
) {
const { index, query } = action.payload;
if (query.response) {
if (query.response != undefined) {
state.queries[index].response =
(state.queries[index].response || '') + query.response;
} else {