mbworth
mbworth
To my knowledge this (prevent_initial_call=True) only works when the app first starts. When dynamically adding components to an app, the callback with the pattern matching input will be triggered every...
I believe this is connected to the same issue... here's another error that occurs on first access to application after startp, but never shows again ``` [2024-07-20 06:52:47,416] ERROR in...
prevent_initial_call only prevents callbacks at the start of the app. If components are dynamically added and if they match the callback, then the callback will be triggered. My assumption is...