Skip to content

Commit

Permalink
Merge branch 'master' of github.com:khoj-ai/khoj into features/weave-…
Browse files Browse the repository at this point in the history
…agent-personality-through-subtasks
  • Loading branch information
sabaimran committed Sep 16, 2024
2 parents 5b7bc46 + c9665fb commit 61a5446
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/interface/web/app/common/chatFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export function modifyFileFilterForConversation(
const method = mode === "add" ? "POST" : "DELETE";

const body = {
conversation_id: conversationId,
conversation_id: String(conversationId),
filenames: filenames,
};
const addUrl = `/api/chat/conversation/file-filters/bulk`;
Expand All @@ -177,7 +177,6 @@ export function modifyFileFilterForConversation(
})
.then((response) => response.json())
.then((data) => {
console.log("ADDEDFILES DATA: ", data);
setAddedFiles(data);
})
.catch((err) => {
Expand Down

0 comments on commit 61a5446

Please sign in to comment.