Skip to content

Commit

Permalink
fix: remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
nsarrazin committed Dec 18, 2024
1 parent ab6a6db commit 83162d6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib/components/chat/ChatInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
const target = e.target as HTMLInputElement;
files = [...files, ...(target.files ?? [])];
console.log(files.map((file) => file.type));
if (files.some((file) => file.type.startsWith("application/"))) {
await settings.instantSet({
tools: [...($settings.tools ?? []), documentParserToolId],
Expand Down

0 comments on commit 83162d6

Please sign in to comment.