Fix console error and remove console.log statements
This commit is contained in:
parent
f5037f0b81
commit
2742a26c6a
|
|
@ -53,7 +53,7 @@ export const Input = ({ inputParam, value, nodes, edges, nodeId, onChange, disab
|
||||||
{inputParam.name === 'note' ? (
|
{inputParam.name === 'note' ? (
|
||||||
<FormControl sx={{ width: '100%', height: 'auto' }} size='small'>
|
<FormControl sx={{ width: '100%', height: 'auto' }} size='small'>
|
||||||
<InputBase
|
<InputBase
|
||||||
id={inputParam.name}
|
id={nodeId}
|
||||||
size='small'
|
size='small'
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
type={getInputType(inputParam.type)}
|
type={getInputType(inputParam.type)}
|
||||||
|
|
|
||||||
|
|
@ -31,8 +31,6 @@ const StickyNote = ({ data }) => {
|
||||||
setOpen(true)
|
setOpen(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(data.id)
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<CardWrapper
|
<CardWrapper
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue