devin-ai commited on
Commit
53821ac
·
verified ·
1 Parent(s): 4ec27c9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -98,7 +98,8 @@ if submit and uploaded_file and input:
98
 
99
  with col2:
100
  st.header("Generated SQL Query:")
101
- st.code(query,height=300)
 
102
 
103
 
104
 
 
98
 
99
  with col2:
100
  st.header("Generated SQL Query:")
101
+ with st.container(height=300):
102
+ st.code(query)
103
 
104
 
105