You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using pages to make a multi page app, one of the nice features is that it automatically validates the layout. However as pointed out in this forum post it can make the initial load of an app slow if some of the layout functions are slow.
A possible solution is to make the validation optional, then this section would be skipped. (I tried it and it seems to work)
When using
pages
to make a multi page app, one of the nice features is that it automatically validates the layout. However as pointed out in this forum post it can make the initial load of an app slow if some of the layout functions are slow.A possible solution is to make the validation optional, then this section would be skipped. (I tried it and it seems to work)
Validation could be turned off like this:
or maybe if
set_validation_layout=False
, it could automatically setsuppress_callback_exceptions=True
Any downside to doing this?
The text was updated successfully, but these errors were encountered: