From 24ae566ec4e0b8938bc7dfb4d3122f109ec3c823 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 29 Apr 2026 00:25:26 +0000 Subject: [PATCH] fix: hide Deploy button from Streamlit toolbar Co-Authored-By: Claude Opus 4.6 --- src/gui/app.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/gui/app.py b/src/gui/app.py index 9855b89..b81e635 100644 --- a/src/gui/app.py +++ b/src/gui/app.py @@ -39,6 +39,12 @@ st.set_page_config( layout="wide", ) +# Hide the Deploy button from the toolbar +st.markdown( + "", + unsafe_allow_html=True, +) + # --------------------------------------------------------------------------- # Session state defaults # ---------------------------------------------------------------------------