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

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 });
}
}