Skip to content

Commit

Permalink
Fix(app): resolve the header logo error on case-sensitive systems
Browse files Browse the repository at this point in the history
  • Loading branch information
mykolaskrynnyk committed Sep 16, 2024
1 parent 1a726ac commit ba43638
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"standard components": "./",
"custom components": "./custom",
},
logo=st.session_state.logo,
logo=st.session_state.logo.lower(),
)

pg = st.navigation(
Expand Down
2 changes: 1 addition & 1 deletion pages/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
st_undp.header(
title="{title}",
subtitle="{subtitle}",
logo="{logo}",
logo="{logo.lower()}",
)
""".strip()
with st.expander("Show Code"):
Expand Down

0 comments on commit ba43638

Please sign in to comment.