How can I disable the alert of “Your app is having trouble loading the component” in Streamlit.
1 Like
Hi @Renan_Nogueira1,
Thanks for posting and welcome to Streamlit Community Forum!
Do you happen to have some code snippets you can share so I can recreate the error?
If you wish to suppress the message, try this;
st.set_option('deprecation.showPyplotGlobalUse', False)
Let me know if this resolves the issue.