Plot of quadrilateral mesh shows triangles

Hi, this may be related to the bug discussed here:

If so, a quick workaround seems to be going via a CG1 space, replacing

topology, cell_types, geometry = plot.vtk_mesh(domain, tdim)

with

CG1 = dolfinx.fem.functionspace(domain, ("CG", 1))
topology, cell_types, geometry = plot.vtk_mesh(CG1)