Hey, I am using ipyleaflet for my work. I would like to draw rectangles on my map with DrawControl. ```Python from ipyleaflet import Map, DrawControl map = Map(center=(49.115469, -1.082814), zoom=10) dc = DrawControl( marker={"shapeOptions": {"color": "#0000FF"}}, rectangle={"shapeOptions": {"color": "#0000FF"}}, circle={"shapeOptions": {"color": "#0000FF"}}, circlemarker={}, ) map.add(dc) display(map) ``` The first drawing works but when I click again on the rectangle for example, DrawControl won't stop drawing rectangles until I clear them all. The above code reproduces the bug. Here is what I get. [Screencast from 19-06-2023 18:39:08.webm](https://github.com/jupyter-widgets/ipyleaflet/assets/76174883/3321fa9c-f5b6-4b49-8445-2c91c9678a9b)