Artificial-superintelligence commited on
Commit
1bdf285
·
verified ·
1 Parent(s): d7f6e28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -121,8 +121,8 @@ def main():
121
  """, unsafe_allow_html=True)
122
 
123
  # Iframe secure preview for websites
124
- if "safe_view" in st.experimental_get_query_params():
125
- url = st.experimental_get_query_params().get("url", [None])[0]
126
  if url:
127
  st.markdown(f"<div class='iframe-container'><iframe src='{url}'></iframe></div>", unsafe_allow_html=True)
128
 
 
121
  """, unsafe_allow_html=True)
122
 
123
  # Iframe secure preview for websites
124
+ if "safe_view" in st.query_params:
125
+ url = st.query_params.get("url", [None])[0]
126
  if url:
127
  st.markdown(f"<div class='iframe-container'><iframe src='{url}'></iframe></div>", unsafe_allow_html=True)
128