Skip to content

Commit

Permalink
🧹 Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
foysalit committed Dec 7, 2024
1 parent 1690391 commit e9d05ab
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion components/workspace/ItemCreator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ const WorkspaceItemCreator: React.FC<WorkspaceItemCreatorProps> = ({
setIsAdding(false)
return false
} catch (error) {
console.error(error)
setIsAdding(false)
toast.error(
`Failed to add items to workspace. ${(error as Error).message}`,
Expand Down
1 change: 0 additions & 1 deletion components/workspace/Panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@ export function WorkspacePanel(props: PropsOf<typeof ActionPanel>) {
})
}
} catch (err) {
console.error(err)
setSubmission({ error: (err as Error).message, isSubmitting: false })
}
}
Expand Down
1 change: 0 additions & 1 deletion components/workspace/hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@ export const useWorkspaceImport = () => {
const { mutateAsync: addToWorkspace } = useWorkspaceAddItemsMutation()

const importFromFiles = async (acceptedFiles: File[]) => {
console.log(acceptedFiles)
if (acceptedFiles.length === 0) return
try {
const results = await Promise.all(
Expand Down

0 comments on commit e9d05ab

Please sign in to comment.