Skip to content

Commit

Permalink
change image path again
Browse files Browse the repository at this point in the history
  • Loading branch information
srirag21 committed Jul 11, 2024
1 parent 9fe6d8d commit 5f2dc7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion st_app/Welcome.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import yaml
from yaml.loader import SafeLoader

cisco_logo = "../cisco2.png"
cisco_logo = "cisco2.png"

with st.sidebar:
st.image(cisco_logo, use_column_width=True)
Expand Down
4 changes: 2 additions & 2 deletions st_app/pages/Launch_Your_Server.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
import yaml
from yaml.loader import SafeLoader

cisco_logo = "../../cisco2.png"
cisco_logo = "cisco2.png"

with st.sidebar:
st.image(cisco_logo, use_column_width=True)

names = ["Dodge Demon", "Jeep Trackhawk"]
usernames = ["dodge", "jeep"]

with open('../config.yml') as file:
with open('config.yml') as file:
config = yaml.load(file, Loader=SafeLoader)
authenticator = stauth.Authenticate(
config['credentials'],
Expand Down

0 comments on commit 5f2dc7a

Please sign in to comment.