Hi @Nilesh_Ravichandran and welcome to the community!
You can use some CSS to change the display options for that button, for that you can use this st.markdown widget at the top of your app.
st.markdown(
"""
<style>
div[data-testid="stStatusWidget"] div button {
display: none;
}
</style>
""",
unsafe_allow_html=True,
)
Hope it helps,
Carlos
Ok thank you.
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.