Plotly_dark template seems to stopped working on dash

Hi

plotly_dark template have stopped working on my dash app. The chart background is now white.

I checked using the tips dataset example. It’s not working there too.

@app.callback(Output(“graph_fb”, “figure”), [Input(d, “value”) for d in dimensions])
def make_figure(x, y, color, facet_col, facet_row):
return px.scatter(
tips,
x=x,
y=y,
color=color,
facet_col=facet_col,
facet_row=facet_row,
height=700,
template=‘plotly_dark’
)