1
0
Fork 0

chore(shared): Cleaned up debug statements

This commit is contained in:
Joost De Cock 2022-10-06 00:11:29 +02:00
parent 81908b4dbc
commit 4ea391ba91
3 changed files with 0 additions and 4 deletions

View file

@ -30,7 +30,6 @@ const Example = ({ app, draft, xray = false }) => {
gist.margin = 20
}
const patternProps = draft.draft().getRenderProps()
console.log(draft)
if (draft.store.logs.error.length > 0 || draft.setStores[0].logs.error.length > 0)
return (
<div className="max-w-full p-4">

View file

@ -23,8 +23,6 @@ const ExamplesComponent = ({ app, part, xray = false }) => {
measurements,
})
const patternProps = draft.draft().getRenderProps()
console.log(draft)
console.log(patternProps)
if (draft.store.logs.error.length > 0 || draft.setStores[0].logs.error.length > 0)
return (
<div className="max-w-full p-4">

View file

@ -9,7 +9,6 @@ const names = {
}
const Highlight = (props) => {
console.log(props)
let language = 'txt'
if (props.language) language = props.language
if (props.children?.props?.className) {