Skip to content

Commit

Permalink
fix: remove console.log (#1982)
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferarnesen authored Sep 15, 2021
1 parent 01cd2d6 commit 271463b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/pages/edit/LayoutModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export const LayoutModal = ({ columns, onSaveLayout, onClose }) => {
useEffect(() => setCols(columns), [])

const setColsWrapper = value => {
console.log(value)
const parsedValue = parseInt(value, 10)

// handle values like ".2"
Expand Down Expand Up @@ -169,7 +168,6 @@ export const LayoutModal = ({ columns, onSaveLayout, onClose }) => {
<Button
primary
onClick={() => {
console.log('on save', cols, getColsSaveValue(cols))
onSaveLayout(getColsSaveValue(cols))
onClose()
}}
Expand Down

0 comments on commit 271463b

Please sign in to comment.