Skip to content

Commit

Permalink
fixes: favicon-path
Browse files Browse the repository at this point in the history
  • Loading branch information
Avdhesh-Varshney committed Dec 14, 2024
1 parent 374c35b commit 60e2977
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions streamlit_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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")

Expand Down

0 comments on commit 60e2977

Please sign in to comment.