Uncaught RangeError: Maximum call stack size exceeded

Hi, im getting an error on my project that i cant figure out.. for some reason when i applied the below scripts to the controls on the Advanced tab, the controls on the Main tab break the next time i open the project, giving this error:

Uncaught RangeError: Maximum call stack size exceeded
at send (src/client/ipc/index.js:159:26)
at widget.getProp (src/client/managers/widgets.js:176:16)
at this.removeWidgets (src/client/managers/widgets.js:205:21)
at w.scroll (src/client/editor/data-workers.js:101:18)
at reCreateWidget (src/client/widgets/common/widget.js:1165:34)
at changedProps.push (src/client/widgets/common/widget.js:838:24)
at this.updateLinkedPropsWithNesting (src/client/widgets/common/widget.js:464:17)
at linkedValueChangedCallback (src/client/widgets/common/widget.js:429:21)
at this._listeners[evt].slice (src/client/events/event-emitter.js:29:29)

The scripts applied are as such:
On Kelvin switch: send(false,"/group/Lobby", 255, 255, 255, 0, @{Lobby_Brightness.value}, value)
On Brightness knob: send(false,"/group/Lobby", 255, 255, 255, 0, value, @{Lobby_Kelvin.value})

Any ideas why this is happening?

thanks
JoshAGWA LX V18.json (59.0 KB)

ahhhh nevermind, i found my issue. had used the same id on two components!

Ok cool ! By the way, avoid writing @{} in scripts and use the get function instead.