From af6f78304303e7f4ebb9995972f032f13819d850 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 11 Jun 2023 23:04:02 +0100 Subject: [PATCH] hotfix --- frontend/src/conversation/conversationSlice.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/conversation/conversationSlice.ts b/frontend/src/conversation/conversationSlice.ts index 8b5d29ad..dfafd469 100644 --- a/frontend/src/conversation/conversationSlice.ts +++ b/frontend/src/conversation/conversationSlice.ts @@ -65,7 +65,7 @@ export const fetchAnswer = createAsyncThunk( } } } - return { answer: '', query: question, result: '' }; + return { answer: '', query: question, result: '', sources: [] }; }, );