fixes on comments

This commit is contained in:
Alex
2023-02-25 18:43:54 +00:00
parent 4769eb31e9
commit fdc8a509de
2 changed files with 25 additions and 24 deletions

View File

@@ -18,7 +18,7 @@ export const fetchAnswer = createAsyncThunk<
const answer = await fetchAnswerApi(
question,
state.preference.apiKey,
state.preference.selectedDocs,
state.preference.selectedDocs!,
);
return answer;
});