jarvisx17 commited on
Commit
4facba2
1 Parent(s): dc72b91

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -79,7 +79,7 @@ tabs = st.tabs(["Add Stocks", "Manage Stocks", "Tax Analysis"])
79
 
80
  with tabs[0]:
81
  st.header("Add New Stock Sale and Portfolio Stock")
82
- st.subheader("Stock Sale")
83
  add_stock_sale()
84
  st.subheader("Portfolio Stock")
85
  add_portfolio_stock()
@@ -87,7 +87,7 @@ with tabs[0]:
87
  with tabs[1]:
88
  st.header("Manage Stocks")
89
 
90
- st.subheader("Stock Sales")
91
  st.dataframe(st.session_state.stock_sales)
92
 
93
  if st.session_state.stock_sales.shape[0] > 0:
 
79
 
80
  with tabs[0]:
81
  st.header("Add New Stock Sale and Portfolio Stock")
82
+ st.subheader("Sold Stock")
83
  add_stock_sale()
84
  st.subheader("Portfolio Stock")
85
  add_portfolio_stock()
 
87
  with tabs[1]:
88
  st.header("Manage Stocks")
89
 
90
+ st.subheader("Sold Stock")
91
  st.dataframe(st.session_state.stock_sales)
92
 
93
  if st.session_state.stock_sales.shape[0] > 0: