Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -707,7 +707,7 @@ with col_right:
|
|
| 707 |
df = load_transactions(uploaded)
|
| 708 |
|
| 709 |
if not df.empty:
|
| 710 |
-
st.dataframe(df.tail(10),
|
| 711 |
|
| 712 |
# Financial metrics
|
| 713 |
summary = budget_summary(df, monthly_income_hint=profile.monthly_income)
|
|
|
|
| 707 |
df = load_transactions(uploaded)
|
| 708 |
|
| 709 |
if not df.empty:
|
| 710 |
+
st.dataframe(df.tail(10), use_container_width=True, height=200)
|
| 711 |
|
| 712 |
# Financial metrics
|
| 713 |
summary = budget_summary(df, monthly_income_hint=profile.monthly_income)
|