I found the solution:
You can now skip this initialization behavior by passing in prevent_initial_call=True
to your @app.callback
or, if you want to skip this for all of your callbacks, prevent_initial_callbacks=True
to app = dash.Dash(__name__, prevent_initial_callbacks=True)
from: