Dear Team,
I have created a multipage app with each page having multiple graphs(multiple callbacks). It is working for some (old) callbacks. However, the dash app layout is not rendering any page if I add new callbacks. No errors are displayed too in the console or terminal.
I have tried different options:
- app.run_server(debug=True) → page not even loading
- app.run_server(debug=False) ->page loading but no graph outputs on page
- reduced number of callbacks from 15 to 10 (I have combined multiple callbacks)
Note: All pages are working independently. (they are not working after adding together and no errors in console)
Link for my dashboard: https://greektragedy.herokuapp.com/
Link for the code: GitHub - VIJAYAYERUVA/greektragedy: This repo is for 'Greek Tragedy' visualization.
Currently, I don’t have a specific ‘code’ that is throwing errors.
Is there a limit on the number of callbacks on each page?