as per horacebury: it’s rotating
are you absolutely positive that everything (box and all ground) are perfectly aligned and configured? (no overlap, no fractional coordinates, no excessive density differences, no strange bounce values, no crazy gravity scales, no manually applied impulses from elsewhere, etc)
(in my experience, box2d should easily handle this type of gravity-only-flat-drop simulation without unwanted rotational artifacts if set up perfectly)
box2d would appear to be (circumstantial evidence) solving the rightmost collision first, where the collision normal is enough off-center so the “repel out of collision” force applied would tend to impart the rotation you’re showing (which the second leftmost collision would halt)
or try adding a tiny bit of linear damping to your dynamic box - i’ve found that box2d can continue “inchworm”-like collide-resolve-repeat indefinately if there’s no damping, which might be at play here too?? (you could try some angular damping too, but sometimes the obvious is not the culprit - it may be that continued linear motion is what is leading to your rotation, and you’d want to “fix” the problem as early in the simulation as you can)
BTW… if your whole ground is static, then you’d be far better off just making it one large single body. (you could still DRAW individual tiles, just don’t add them as individual bodies)