diff --git a/finance_tracker/web/app.py b/finance_tracker/web/app.py index db4a8af..8abbeca 100644 --- a/finance_tracker/web/app.py +++ b/finance_tracker/web/app.py @@ -13,7 +13,6 @@ import html as _html import json import streamlit as st -import streamlit.components.v1 as st_components import os from finance_tracker.web.db import get_session, get_db_path, get_engine from finance_tracker.web.navigation import build_pages @@ -120,25 +119,21 @@ def render_db_manager(): st.rerun() # Animated arrow hinting at the sidebar toggle after 20 s of inactivity. - # Uses st_components.html (iframe) so the script actually executes — - # st.markdown strips """, height=0) +""") # Show documentation (needs no DB) so users aren't stranded on a blank page from finance_tracker.web.views.documentation import render as doc_render