properly records bing conversations

This commit is contained in:
Daniel Avila 2023-02-20 21:16:40 -05:00
parent b4e22936ba
commit 81e52fed73
6 changed files with 91 additions and 32 deletions

View file

@ -8,7 +8,7 @@ const initialState = {
conversationSignature: null,
clientId: null,
invocationId: null,
convosLoading: false,
convosLoading: false
};
const currentSlice = createSlice({
@ -20,7 +20,7 @@ const currentSlice = createSlice({
},
setError: (state, action) => {
state.error = action.payload;
},
}
// setConvos: (state, action) => state.convos = action.payload,
}
});