AlanOC commited on
Commit
1b3ca3e
1 Parent(s): 84d3f28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -376,7 +376,14 @@ def main():
376
  """, unsafe_allow_html=True,
377
  )
378
 
379
-
 
 
 
 
 
 
 
380
 
381
  with st.form("input_form"):
382
 
 
376
  """, unsafe_allow_html=True,
377
  )
378
 
379
+ # Custom CSS to hide “Press Enter to submit form”
380
+ st.markdown("""
381
+ <style>
382
+ div[data-testid="InputInstructions"] > span:nth-child(1) {
383
+ visibility: hidden;
384
+ }
385
+ </style>
386
+ """, unsafe_allow_html=True)
387
 
388
  with st.form("input_form"):
389