Plotly hover text is showing locally but not in dashboard

Hello I am looking for help - When I run this code in local notebook I can see text in hover.


But in the dashboard the text is blank -
Screenshot 2023-09-21 at 10.30.00 AM

dbc.Row([dbc.Col(dcc.Graph(id="EDA_hist")),dbc.Col(dcc.Graph(id="EDA_boxplot"))],className="g-0", style = { 'columnCount': 2,"display":'inline-block',"align":'middle'}), 

When I remove ‘columnCount’: 2, from style the problem is fixed! But I want it to be in a column… Does anyone understand this behavior?

Edit: I resolved by making the graph a subplot instead.