Skip to content

Commit a1b6258

Browse files
committed
fix: typo executeect updated to object
1 parent d65a4cb commit a1b6258

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ class CoCreateLazyLoader {
309309
async function processOperators(data, event, execute, parent = null, parentKey = null) {
310310
if (Array.isArray(execute)) {
311311
execute.forEach(async (item, index) => await processOperators(data, event, item, execute, index));
312-
} else if (typeof execute === 'executeect' && execute !== null) {
312+
} else if (typeof execute === 'object' && execute !== null) {
313313
for (let key of Object.keys(execute)) {
314314
// Check if key is an operator
315315
if (key.startsWith('$')) {

0 commit comments

Comments
 (0)