fix: hide Deploy button from Streamlit toolbar

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-29 00:25:26 +00:00
parent f97b633d4c
commit 24ae566ec4

View File

@@ -39,6 +39,12 @@ st.set_page_config(
layout="wide",
)
# Hide the Deploy button from the toolbar
st.markdown(
"<style>[data-testid='stAppDeployButton'] {display: none;}</style>",
unsafe_allow_html=True,
)
# ---------------------------------------------------------------------------
# Session state defaults
# ---------------------------------------------------------------------------