Closed gadenbuie closed 2 months ago
Fixes #45
With the current approach, if the app takes a while to start up the warning message isn't removed and sticks around forever.
To reproduce the issue in #45, add time.sleep(2) at the start of the server function of examples/theme-picker/app.py.
time.sleep(2)
examples/theme-picker/app.py
I also made the warning message an actual Bootstrap alert
Fixes #45
With the current approach, if the app takes a while to start up the warning message isn't removed and sticks around forever.
To reproduce the issue in #45, add
time.sleep(2)
at the start of the server function ofexamples/theme-picker/app.py
.