Ramonda

RMD001 — State written during render()

render() must be a function of state, not a place that changes it. A write there schedules another render from inside the render that caused it.

Move it to @created if it is initialisation, or to an event handler if it is a response to something. If it is a value derived from other state, that is @compute.

Next