From 0aa709b47a022174d1167cc2ed8ac5e5800b4cd6 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Thu, 26 Feb 2026 20:53:54 -0800 Subject: [PATCH] fix: render banner link as clickable page_link instead of italic text --- app/Home.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/Home.py b/app/Home.py index de0d663..45cda39 100644 --- a/app/Home.py +++ b/app/Home.py @@ -520,7 +520,11 @@ if _profile and _profile.wizard_complete: for banner in _pending_banners: _bcol, _bdismiss = st.columns([10, 1]) with _bcol: - st.info(f"💡 {banner['text']} → _{banner['link_label']}_") + _ic, _lc = st.columns([3, 1]) + _ic.info(f"💡 {banner['text']}") + with _lc: + st.write("") + st.page_link("pages/2_Settings.py", label=banner['link_label'], icon="⚙️") with _bdismiss: st.write("") if st.button("✕", key=f"dismiss_banner_{banner['key']}", help="Dismiss"):