Fix console error and remove console.log statements

This commit is contained in:
Ilango 2024-01-12 14:08:55 +05:30
parent f5037f0b81
commit 2742a26c6a
2 changed files with 1 additions and 3 deletions

View File

@ -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)}

View File

@ -31,8 +31,6 @@ const StickyNote = ({ data }) => {
setOpen(true) setOpen(true)
} }
console.log(data.id)
return ( return (
<> <>
<CardWrapper <CardWrapper