placate format gods

This commit is contained in:
Alex McLean
2025-10-08 15:35:34 +01:00
parent ffbbc43c89
commit 64f16c4f33
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -216,7 +216,7 @@ export function repl({
if (Object.keys(pPatterns).length) {
let patterns = [];
for (const [key, value] of Object.entries(pPatterns)) {
patterns.push(value.withState(state => state.setControls({id: key})));
patterns.push(value.withState((state) => state.setControls({ id: key })));
}
if (eachTransform) {
// Explicit lambda so only element (not index and array) are passed
+1 -1
View File
@@ -21,7 +21,7 @@ export class State {
// Returns new State with added controls.
setControls(controls) {
return new State(this.span, {...this.controls, ...controls});
return new State(this.span, { ...this.controls, ...controls });
}
}