How to hide deploy button in streamlit version 1.38?

Hello, the css code of the button change. You can check it : right click, inspect. it’s now "stAppDeployButton

    st.markdown(
        r"""
        <style>
        .stAppDeployButton {
                visibility: hidden;
            }
        </style>
        """, unsafe_allow_html=True
    )

:slight_smile: