Hi,
This warning is typically not a Mendix-specific issue but comes from the browser’s ResizeObserver API. It usually occurs when a component continuously triggers layout changes (resize → render → resize loop).
In Mendix 11 (React client), this is commonly caused by:
Recommended approach to resolve:
height: auto combined with dynamic contentoverflow: auto/scroll)Try simplifying the layout or fixing height where possible.
This is usually caused by a resize-render loop in the UI rather than a backend issue. Optimizing layout structure and avoiding unnecessary re-renders typically resolves it.
Hi Selcuk Emre
This is a generic issue which raises due to UI element is reacting to its own size changes, causing an infinite resize loop. Basically your browser detect this anamoly and stop it-> this sends the alert which you say in mendix.
Mostly likely you have to check the UI for the element from which page your getting this.
This usually happens when:
Let me know if it helps!