Spaces:
Sleeping
Sleeping
Commit
·
ee0a111
1
Parent(s):
93e87c6
Fix: use_column_width for Streamlit 1.23.1 compatibility
Browse files
app.py
CHANGED
|
@@ -91,7 +91,7 @@ def chat_message(message, is_user=False):
|
|
| 91 |
|
| 92 |
st.image(
|
| 93 |
"src/assets/logo_title_transparent.png",
|
| 94 |
-
|
| 95 |
)
|
| 96 |
|
| 97 |
st.write("AI and optimization powered companion gardening")
|
|
@@ -561,7 +561,7 @@ if page == "About":
|
|
| 561 |
|
| 562 |
st.image(
|
| 563 |
"src/assets/GRDN_AI_techstack_.png",
|
| 564 |
-
|
| 565 |
)
|
| 566 |
|
| 567 |
add_vertical_space(4)
|
|
|
|
| 91 |
|
| 92 |
st.image(
|
| 93 |
"src/assets/logo_title_transparent.png",
|
| 94 |
+
use_column_width=True,
|
| 95 |
)
|
| 96 |
|
| 97 |
st.write("AI and optimization powered companion gardening")
|
|
|
|
| 561 |
|
| 562 |
st.image(
|
| 563 |
"src/assets/GRDN_AI_techstack_.png",
|
| 564 |
+
use_column_width=True,
|
| 565 |
)
|
| 566 |
|
| 567 |
add_vertical_space(4)
|