Spaces:
Runtime error
Runtime error
update
Browse files
app.py
CHANGED
@@ -79,3 +79,10 @@ if __name__ == "__main__":
|
|
79 |
)
|
80 |
if input_text.strip():
|
81 |
get_correction(input_text)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
)
|
80 |
if input_text.strip():
|
81 |
get_correction(input_text)
|
82 |
+
|
83 |
+
hide_streamlit_style = """
|
84 |
+
<style>
|
85 |
+
footer {visibility: hidden;}
|
86 |
+
</style>
|
87 |
+
"""
|
88 |
+
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|