Skip to content

Commit

Permalink
chore: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
elpeix committed Aug 15, 2024
1 parent ee62b06 commit 12a3e11
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export default function CollectionItem({
const handleDrop = (e: React.DragEvent<HTMLDivElement>) => {
e.stopPropagation()
const id = e.dataTransfer.getData('collectionId')
console.log(id, collection.id)
move(id, collection.id)
}

Expand Down
1 change: 0 additions & 1 deletion src/renderer/src/components/tabs/tabTitle/TabTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export default function TabTitle({ tab }: { tab: RequestTab }) {
useEffect(() => {
setTabName(tab.name)
setSaved(tab.saved || false)
console.log(tab)
}, [tab])

const getTabTitle = () => {
Expand Down

0 comments on commit 12a3e11

Please sign in to comment.