Skip to content

Commit

Permalink
fix: Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
PrettyCoffee committed Apr 21, 2024
1 parent 25a307c commit e55ea24
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/pages/settings/DataSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ export const DeleteData = ({
const affectedData = selected.map(
value => dataFields.find(field => field.value === value)?.label
)
console.log(affectedData)

return (
<>
Expand Down
1 change: 0 additions & 1 deletion src/pages/spinner/Tags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ export const Tags = ({
const ref = useRef<HTMLDivElement | null>(null)
const { height, width } = useSize(ref)
const size = Math.min(Math.min(height, width), 300)
console.log(size)
return (
<div
ref={ref}
Expand Down

0 comments on commit e55ea24

Please sign in to comment.