The hover info for a boxplot median seems to be incorrectly positioned when I set hovermode=x in my plot, as demonstrated below.
import plotly.express as px
df = px.data.tips()
df = df[df.time == "Lunch"]
fig = px.box(df, y="time", x="total_bill")
fig.update_layout(hovermode="x")
fig.show()

Seems potentially related to plotly/plotly.js#2970? Also not sure if this belongs here or in the plotly.js repo. Happy to move if needed.