I have fixed the issue. You can get the code from https://codesandbox.io/p/sandbox/stackoverflow-forked-yc4nkm?file=%2Fsrc%2FTheOverlayTrigger.tsx%3A54%2C63.
Change
state.styles.popper.transform = customTransform;
to
state.styles.popper.top = customTransform.top;
state.styles.popper.left = customTransform.left;
Then it be working. 👍