🔥 refactor(dictAreaModal/index.tsx): remove unnecessary console.log statement

The console.log statement was not providing any useful information and was removed to improve code cleanliness and performance.
This commit is contained in:
Cristhian Zanforlin Lousa 2023-09-26 11:21:49 -03:00
commit 0e6b38c427

View file

@ -22,8 +22,6 @@ export default function DictAreaModal({
const [dictObj, setDictObj] = useState(value);
useEffect(() => {
console.log(value);
if (value) setDictObj(value);
}, [dictObj]);