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' ? (
|
||||
<FormControl sx={{ width: '100%', height: 'auto' }} size='small'>
|
||||
<InputBase
|
||||
id={inputParam.name}
|
||||
id={nodeId}
|
||||
size='small'
|
||||
disabled={disabled}
|
||||
type={getInputType(inputParam.type)}
|
||||
|
|
|
|||
|
|
@ -31,8 +31,6 @@ const StickyNote = ({ data }) => {
|
|||
setOpen(true)
|
||||
}
|
||||
|
||||
console.log(data.id)
|
||||
|
||||
return (
|
||||
<>
|
||||
<CardWrapper
|
||||
|
|
|
|||
Loading…
Reference in New Issue