Not possible to reorder pages

Hi Retool team,

Until not long ago it was possible to drag and drop the pages left menu bar so that they can be ordered (and consequently appear in a given order in the navigation panel). Now it is no longer possible to reorder the pages, which has made me apply an unnecessary hack in the mapped data source for the navigation panel:

{{ retoolContext.pages.slice().sort((a, b) => (a.id === "selectArea" ? -1 : b.id === "selectArea" ? 1 : 0)) }}

Am I missing something, was this moved somewhere else?