fix(client): fix error log in variable component (#4248)

This commit is contained in:
Junyi 2024-04-30 21:58:34 +08:00 committed by GitHub
parent 95fef86880
commit f3e39f6f05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -225,7 +225,7 @@ export function TextArea(props) {
.then((preloaded) => {
setOptions(preloaded);
})
.catch((err) => console.error);
.catch(console.error);
}, [scope, value]);
useEffect(() => {