From 60e2977022ae503a1f3e94cecba74615e8532a7f Mon Sep 17 00:00:00 2001 From: Avdhesh-Varshney <114330097+Avdhesh-Varshney@users.noreply.github.com> Date: Sat, 14 Dec 2024 17:56:02 +0530 Subject: [PATCH] fixes: favicon-path --- streamlit_app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/streamlit_app.py b/streamlit_app.py index 9cd09c6..7daac5f 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -586,7 +586,7 @@ def app(): st.rerun() if __name__ == '__main__': - st.set_page_config(page_title="Online Payment Fraud Detection App", page_icon="./static/favicon.ico") + st.set_page_config(page_title="Online Payment Fraud Detection App", page_icon="https://github.com/user-attachments/assets/662c2283-a6c9-471a-a2cd-b4173c64cd54") if 'button_clicked' not in st.session_state: st.session_state.button_clicked = False @@ -595,7 +595,7 @@ def app(): with title: col1, col2 = st.columns([1, 7]) with col1: - st.image('./static/favicon.png', width=100) + st.image('https://github.com/user-attachments/assets/662c2283-a6c9-471a-a2cd-b4173c64cd54', width=100) with col2: st.title("Payment Fraud Detection App")