Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
LilyMakesThings authored Feb 3, 2024
1 parent be70656 commit 1c7c260
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/engine/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -1604,10 +1604,7 @@ class Runtime extends EventEmitter {
type: 'field_variable',
name: placeholder,
variableTypes:
argInfo.variableTypes
? (Array.isArray(argInfo.variableTypes)
? argInfo.variableTypes : [argInfo.variableTypes])
: [''],
argInfo.variableTypes ? (Array.isArray(argInfo.variableTypes) ? argInfo.variableTypes : [argInfo.variableTypes]) : [''],

Check failure on line 1607 in src/engine/runtime.js

View workflow job for this annotation

GitHub Actions / build

This line has a length of 136. Maximum allowed is 120

Check failure on line 1607 in src/engine/runtime.js

View workflow job for this annotation

GitHub Actions / build

This line has a length of 136. Maximum allowed is 120
variable: (argInfo.variableTypes === 'broadcast_msg') ? 'message1' : null
};
}
Expand Down

0 comments on commit 1c7c260

Please sign in to comment.