Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -115,7 +115,7 @@ def streamlit_app():
|
|
115 |
history = load_history()
|
116 |
|
117 |
# Display the buttons for each URL
|
118 |
-
for url, name, emoji in zip(urls, url_names,
|
119 |
if st.button(f"{emoji} {name}"):
|
120 |
# Generate the base64 link and display it under the button
|
121 |
link_html = open_url(url, emoji, name)
|
|
|
115 |
history = load_history()
|
116 |
|
117 |
# Display the buttons for each URL
|
118 |
+
for url, name, emoji in zip(urls, url_names, emoji_mapping):
|
119 |
if st.button(f"{emoji} {name}"):
|
120 |
# Generate the base64 link and display it under the button
|
121 |
link_html = open_url(url, emoji, name)
|