fix: community function import

This commit is contained in:
Timothy Jaeryang Baek 2025-08-14 02:42:28 +04:00
parent 93205d4320
commit 72168b1586

View file

@ -626,7 +626,12 @@
const _functions = JSON.parse(event.target.result);
console.log(_functions);
for (const func of _functions) {
for (let func of _functions) {
if ('function' in func) {
// Required for Community JSON import
func = func.function;
}
const res = await createNewFunction(localStorage.token, func).catch((error) => {
toast.error(`${error}`);
return null;