Streamlit showing garbled text in Firefox browser

Summary

I am getting garbled output on Firefox for this streamlit code found at :

It works just fine in Google Chrome and Microsoft Edge.
Please expain how to fix this without upgrading everything.

Why is this happening JUST in Firefox?

Steps to reproduce

import streamlit as st
import pandas as pd

st.set_page_config(layout="centered")

@st.cache_data(show_spinner=False)
def load_data(file_path):
    dataset = pd.read_csv(file_path)
    return dataset


@st.cache_data(show_spinner=False)
def split_frame(input_df, rows):
    df = [input_df.loc[i : i + rows - 1, :] for i in range(0, len(input_df), rows)]
    return df


if file_path := st.file_uploader("Select CSV file to upload", type=["csv"]):
    dataset = load_data(file_path)
    top_menu = st.columns(3)
    with top_menu[0]:
        sort = st.radio("Sort Data", options=["Yes", "No"], horizontal=1, index=1)
    if sort == "Yes":
        with top_menu[1]:
            sort_field = st.selectbox("Sort By", options=dataset.columns)
        with top_menu[2]:
            sort_direction = st.radio(
                "Direction", options=["⬆️", "⬇️"], horizontal=True
            )
        dataset = dataset.sort_values(
            by=sort_field, ascending=sort_direction == "⬆️", ignore_index=True
        )
    pagination = st.container()

    bottom_menu = st.columns((4, 1, 1))
    with bottom_menu[2]:
        batch_size = st.selectbox("Page Size", options=[25, 50, 100])
    with bottom_menu[1]:
        total_pages = (
            int(len(dataset) / batch_size) if int(len(dataset) / batch_size) > 0 else 1
        )
        current_page = st.number_input(
            "Page", min_value=1, max_value=total_pages, step=1
        )
    with bottom_menu[0]:
        st.markdown(f"Page **{current_page}** of **{total_pages}** ")



    pages = split_frame(dataset, batch_size)
    pagination.dataframe(data=pages[current_page - 1], use_container_width=True)

If applicable, please provide the steps we should take to reproduce the error or specified behavior.

Expected behavior:

I expect to see the app appear correctly, See image below:

Actual behavior:

Here’s what the actual output looks like:

ÿ�������T�10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.0
Accept: text/html,applicaton/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,/;q=0.8
Accept-Language: en-US,en;q=0.5
Accept-Encoding� gzip, deflate, br
Connection: keep-alive
Cookie: ajs_anonymous_id=%22f494ddad-1dcc-4901-9174-e7b40c6222a%22; ajs_user_id=%2267db3d19-ffbf-5c46-a4bb-9b39a9�b9c13%22; username-localhost-8888=“2|1:0|10:1688052680|23�username-localhost-8888|200:eyJ1c2VybmFtZSI6ICIzNDMZDdhMjZkYjg0NTI0ODljNmJkZDc1N2JjMzVjYSIsICJuYW1lIjogIkFub255bW91cyBQYXNpcGhhZIsICJkaXNwbGF5X25hbWUiOiAiQW5vbnltb3VzIFBhc2lwaGFlIiwgImluaXRpYWxzIjogIkFQIiwgImNvbG9yIjog�nVsbH0=|cb7250872ce857bd38ef9d66ad7ea68eace70c00089ad3bcd569b5bce44ecf38”
Upgrade-Insecure-Requests:

Explain the undesired behavior or error you see when you run the code above.
If you’re seeing an error message, share the full contents of the error message here.

Debug info

  • Streamlit version: v1.19.0
  • Python version: 3.10
  • Using Conda v23.5.2
  • OS version: Windows 10 Pro
  • Browser version: Firefox v115.0.2

Requirements file

Using Conda environment below:

c:\Users\PowerUser>conda list -n streamlit

packages in environment at C:\ProgramData\Anaconda3\envs\streamlit:

Name Version Build Channel

altair 4.2.2 pyhd8ed1ab_0 conda-forge
anyio 3.6.1 py310h5588dad_0 conda-forge
appdirs 1.4.4 pyh9f0ad1d_0 conda-forge
argon2-cffi 21.3.0 pyhd8ed1ab_0 conda-forge
argon2-cffi-bindings 21.2.0 py310h8d17308_3 conda-forge
arrow 1.2.3 pyhd8ed1ab_0 conda-forge
arrow-cpp 9.0.0 py310h8b1cf1d_2_cpu conda-forge
asgiref 3.6.0 pyhd8ed1ab_0 conda-forge
asttokens 2.2.1 pyhd8ed1ab_0 conda-forge
async_generator 1.10 py_0 conda-forge
attrs 22.2.0 pyh71513ae_0 conda-forge
autobahn 23.1.2 pyhd8ed1ab_0 conda-forge
automat 22.10.0 pyhd8ed1ab_0 conda-forge
aws-c-cal 0.5.11 he19cf47_0 conda-forge
aws-c-common 0.6.2 h8ffe710_0 conda-forge
aws-c-event-stream 0.2.7 h70e1b0c_13 conda-forge
aws-c-io 0.10.5 h2fe331c_0 conda-forge
aws-checksums 0.1.11 h1e232aa_7 conda-forge
aws-sdk-cpp 1.8.186 h93d3aa3_4 conda-forge
babel 2.12.1 pyhd8ed1ab_1 conda-forge
backcall 0.2.0 pyh9f0ad1d_0 conda-forge
backports 1.0 pyhd8ed1ab_3 conda-forge
backports.functools_lru_cache 1.6.4 pyhd8ed1ab_0 conda-forge
backports.zoneinfo 0.2.1 py310h5588dad_7 conda-forge
bcrypt 3.2.2 py310h8d17308_1 conda-forge
beautifulsoup4 4.11.1 pyha770c72_0 conda-forge
bleach 6.0.0 pyhd8ed1ab_0 conda-forge
blinker 1.5 pyhd8ed1ab_0 conda-forge
bokeh 2.4.3 pyhd8ed1ab_3 conda-forge
boltons 23.0.0 pyhd8ed1ab_0 conda-forge
brotli 1.0.9 hcfcfb64_8 conda-forge
brotli-bin 1.0.9 hcfcfb64_8 conda-forge
brotlipy 0.7.0 py310h8d17308_1005 conda-forge
bs4 0.0.1 pypi_0 pypi
bzip2 1.0.8 h8ffe710_4 conda-forge
c-ares 1.18.1 h8ffe710_0 conda-forge
ca-certificates 2023.5.7 h56e8100_0 conda-forge
cached-property 1.5.2 hd8ed1ab_1 conda-forge
cached_property 1.5.2 pyha770c72_1 conda-forge
cachetools 5.3.0 pyhd8ed1ab_0 conda-forge
catalogue 2.0.8 py310h5588dad_1 conda-forge
certifi 2023.5.7 pyhd8ed1ab_0 conda-forge
cffi 1.15.1 py310h628cb3f_3 conda-forge
channels 3.0.5 pyhd8ed1ab_0 conda-forge
charset-normalizer 2.1.1 pyhd8ed1ab_0 conda-forge
click 8.1.3 win_pyhd8ed1ab_2 conda-forge
cloudpickle 2.2.1 pyhd8ed1ab_0 conda-forge
color-it 2.1.3 pypi_0 pypi
colorama 0.4.6 pyhd8ed1ab_0 conda-forge
colorcet 3.0.1 pyhd8ed1ab_0 conda-forge
comm 0.1.3 pyhd8ed1ab_0 conda-forge
conda 23.3.1 py310h5588dad_0 conda-forge

holoviews 1.15.4 py_0 pyviz
html5lib 1.1 pyh9f0ad1d_0 conda-forge
hyperlink 21.0.0 pyhd3deb0d_0 conda-forge
icu 70.1 h0e60522_0 conda-forge
idna 3.4 pyhd8ed1ab_0 conda-forge
importlib-metadata 6.1.0 pyha770c72_0 conda-forge
importlib_metadata 6.1.0 hd8ed1ab_0 conda-forge
importlib_resources 5.12.0 pyhd8ed1ab_0 conda-forge
incremental 22.10.0 pyhd8ed1ab_0 conda-forge
intel-openmp 2023.0.0 h57928b3_25922 conda-forge
ipykernel 6.22.0 pyh025b116_0 conda-forge
ipython 8.11.0 pyh08f2357_0 conda-forge
ipython-sql 0.3.9 pyhd8ed1ab_1004 conda-forge
ipython_genutils 0.2.0 py_1 conda-forge
ipywidgets 8.0.5 pyhd8ed1ab_0 conda-forge
isoduration 20.11.0 pyhd8ed1ab_0 conda-forge
jedi 0.18.2 pyhd8ed1ab_0 conda-forge
jinja2 3.1.2 pyhd8ed1ab_1 conda-forge
joblib 1.2.0 pyhd8ed1ab_0 conda-forge
jpeg 9e hcfcfb64_3 conda-forge
json5 0.9.5 pyh9f0ad1d_0 conda-forge
jsonpatch 1.32 pyhd8ed1ab_0 conda-forge
jsonpointer 2.3 pypi_0 pypi
jsonschema 4.17.3 pyhd8ed1ab_0 conda-forge
jupyter 1.0.0 py310h5588dad_8 conda-forge
jupyter-server-mathjax 0.2.6 pyh5bfe37b_1 conda-forge
jupyter_client 7.4.9 pyhd8ed1ab_0 conda-forge
jupyter_console 6.6.3 pyhd8ed1ab_0 conda-forge
jupyter_core 5.3.0 py310h5588dad_0 conda-forge
jupyter_events 0.6.3 pyhd8ed1ab_0 conda-forge
jupyter_server 2.5.0 pyhd8ed1ab_0 conda-forge
jupyter_server_terminals 0.4.4 pyhd8ed1ab_1 conda-forge
jupyterlab 3.5.0 pyhd8ed1ab_0 conda-forge
jupyterlab-git 0.41.0 pyhd8ed1ab_1 conda-forge
jupyterlab_pygments 0.2.2 pyhd8ed1ab_0 conda-forge
jupyterlab_server 2.21.0 pyhd8ed1ab_0 conda-forge
jupyterlab_templates 0.3.2 pyh1d7be83_0 conda-forge
jupyterlab_widgets 3.0.6 pyhd8ed1ab_0 conda-forge
kiwisolver 1.4.4 py310h232114e_1 conda-forge
krb5 1.20.1 h6609f42_0 conda-forge
langcodes 3.3.0 pyhd8ed1ab_0 conda-forge
lerc 4.0.0 h63175ca_0 conda-forge
libabseil 20220623.0 cxx17_h1a56200_6 conda-forge
libarchive 3.6.2 h62576cb_0 conda-forge
libblas 3.9.0 16_win64_mkl conda-forge
libbrotlicommon 1.0.9 hcfcfb64_8 conda-forge
libbrotlidec 1.0.9 hcfcfb64_8 conda-forge
libbrotlienc 1.0.9 hcfcfb64_8 conda-forge
libcblas 3.9.0 16_win64_mkl conda-forge
libclang 15.0.7 default_h77d9078_1 conda-forge
libclang13 15.0.7 default_h77d9078_1 conda-forge
libcrc32c 1.1.2 h0e60522_0 conda-forge
libcurl 7.88.1 h68f0423_1 conda-forge
libdeflate 1.17 hcfcfb64_0 conda-forge
libffi 3.4.2 h8ffe710_5 conda-forge
libglib 2.74.1 he8f3873_1 conda-forge
libgoogle-cloud 2.1.0 h1006c2c_1 conda-forge
libhwloc 2.9.0 h51c2c0f_0 conda-forge
libiconv 1.17 h8ffe710_0 conda-forge
liblapack 3.9.0 16_win64_mkl conda-forge
libmamba 1.2.0 h37bf487_0 conda-forge
libmambapy 1.2.0 py310h954024b_0 conda-forge
libogg 1.3.4 h8ffe710_1 conda-forge
libpng 1.6.39 h19919ed_0 conda-forge
libpq 14.5 he840576_5 conda-forge
libprotobuf 3.20.2 h12be248_0 conda-forge
libsodium 1.0.18 h8d14728_1 conda-forge
libsolv 0.7.23 h12be248_0 conda-forge
libsqlite 3.40.0 hcfcfb64_0 conda-forge
libssh2 1.10.0 h680486a_3 conda-forge
libthrift 0.16.0 h9f558f2_2 conda-forge
libtiff 4.5.0 hf8721a0_2 conda-forge
libutf8proc 2.8.0 h82a8f57_0 conda-forge
libvorbis 1.3.7 h0e60522_0 conda-forge
libwebp 1.2.4 hcfcfb64_3 conda-forge
libwebp-base 1.2.4 h8ffe710_0 conda-forge
libxml2 2.10.3 hc3477c8_6 conda-forge
libxslt 1.1.37 h0192164_0 conda-forge
libzlib 1.2.13 hcfcfb64_4 conda-forge
lxml 4.9.2 py310hc0e5b84_0 conda-forge
lz4-c 1.9.4 hcfcfb64_0 conda-forge
lzo 2.10 he774522_1000 conda-forge
m2w64-gcc-libgfortran 5.3.0 6 conda-forge
m2w64-gcc-libs 5.3.0 7 conda-forge
m2w64-gcc-libs-core 5.3.0 7 conda-forge
m2w64-gmp 6.1.0 2 conda-forge
m2w64-libwinpthread-git 5.0.0.4634.697f757 2 conda-forge
mamba 1.2.0 py310h9376f3e_0 conda-forge
markdown 3.4.3 pyhd8ed1ab_0 conda-forge
markdown-it-py 2.2.0 pyhd8ed1ab_0 conda-forge
markupsafe 2.1.2 py310h8d17308_0 conda-forge
matplotlib 3.6.0 py310h5588dad_0 conda-forge
matplotlib-base 3.6.0 py310h51140c5_0 conda-forge
matplotlib-inline 0.1.6 pyhd8ed1ab_0 conda-forge
mdurl 0.1.0 pyhd8ed1ab_0 conda-forge
menuinst 1.4.19 py310h5588dad_1 conda-forge
mistune 2.0.5 pyhd8ed1ab_0 conda-forge
mkl 2022.1.0 h6a75c08_874 conda-forge
mkl-service 2.4.0 py310h84a9c25_0 conda-forge
msys2-conda-epoch 20160418 1 conda-forge
multitasking 0.0.9 pyhd8ed1ab_0 conda-forge
munkres 1.1.4 pyh9f0ad1d_0 conda-forge
murmurhash 1.0.9 py310h00ffb61_1 conda-forge
nb_conda_kernels 2.3.1 py310h5588dad_2 conda-forge
nbclassic 0.5.3 pyhb4ecaf3_3 conda-forge
nbclient 0.7.2 pyhd8ed1ab_0 conda-forge
nbconvert 7.2.9 pyhd8ed1ab_0 conda-forge
nbconvert-core 7.2.9 pyhd8ed1ab_0 conda-forge
nbconvert-pandoc 7.2.9 pyhd8ed1ab_0 conda-forge
nbdime 3.1.1 pyhd8ed1ab_0 conda-forge
nbformat 5.8.0 pyhd8ed1ab_0 conda-forge
nest-asyncio 1.5.6 pyhd8ed1ab_0 conda-forge
notebook 6.5.3 pyha770c72_0 conda-forge
notebook-shim 0.2.2 pyhd8ed1ab_0 conda-forge
numpy 1.24.2 py310hd02465a_0 conda-forge
openssl 1.1.1u hcfcfb64_0 conda-forge
outcome 1.2.0 pyhd8ed1ab_0 conda-forge
packaging 23.0 pyhd8ed1ab_0 conda-forge
pandas 1.5.0 py310h1c4a608_0 conda-forge
pandoc 3.1.1 h57928b3_0 conda-forge
pandocfilters 1.5.0 pyhd8ed1ab_0 conda-forge
panel 0.14.3 py_0 pyviz
param 1.13.0 pyh1a96a4e_0 conda-forge
parquet-cpp 1.5.1 2 conda-forge
parse 1.19.0 pyh44b312d_0 conda-forge
parso 0.8.3 pyhd8ed1ab_0 conda-forge
pathy 0.10.1 pyhd8ed1ab_0 conda-forge
patsy 0.5.3 pyhd8ed1ab_0 conda-forge
pcre2 10.40 h17e33f8_0 conda-forge
pexpect 4.8.0 pyh1a96a4e_2 conda-forge
pickleshare 0.7.5 py_1003 conda-forge
pillow 9.4.0 pypi_0 pypi
pip 23.0.1 pyhd8ed1ab_0 conda-forge
pkgutil-resolve-name 1.3.10 pyhd8ed1ab_0 conda-forge
platformdirs 3.1.1 pyhd8ed1ab_0 conda-forge
plotly 5.13.0 pyhd8ed1ab_0 conda-forge
pluggy 1.0.0 pyhd8ed1ab_5 conda-forge
ply 3.11 py_1 conda-forge
pooch 1.7.0 pyha770c72_3 conda-forge
preshed 3.0.8 py310h00ffb61_1 conda-forge
prettytable 3.6.0 pyhd8ed1ab_0 conda-forge
prometheus_client 0.16.0 pyhd8ed1ab_0 conda-forge
prompt-toolkit 3.0.38 pyha770c72_0 conda-forge
prompt_toolkit 3.0.38 hd8ed1ab_0 conda-forge
protobuf 3.20.2 py310h5588dad_1 conda-forge
psutil 5.9.3 py310h8d17308_0 conda-forge
psycopg2 2.9.3 py310h628cb3f_1 conda-forge
pthreads-win32 2.9.1 hfa6e2cd_3 conda-forge
ptyprocess 0.7.0 pyhd3deb0d_0 conda-forge
pure_eval 0.2.2 pyhd8ed1ab_0 conda-forge
pyarrow 9.0.0 py310h0c37ab2_2_cpu conda-forge
pyasn1 0.4.8 py_0 conda-forge
pyasn1-modules 0.2.7 py_0 conda-forge
pybind11-abi 4 hd8ed1ab_3 conda-forge
pycosat 0.6.4 py310h8d17308_1 conda-forge
pycparser 2.21 pyhd8ed1ab_0 conda-forge
pyct 0.4.6 py_0 conda-forge
pyct-core 0.4.6 py_0 conda-forge
pydantic 1.10.7 py310h8d17308_0 conda-forge
pydeck 0.8.0 pyhd8ed1ab_0 conda-forge
pyee 8.1.0 pyhd8ed1ab_0 conda-forge
pygments 2.14.0 pyhd8ed1ab_0 conda-forge
pyjokes 0.6.0 pypi_0 pypi
pympler 1.0.1 pyhd8ed1ab_0 conda-forge
pyopenssl 23.1.0 pyhd8ed1ab_0 conda-forge
pyparsing 3.0.9 pyhd8ed1ab_0 conda-forge
pypng 0.20220715.0 pyhd8ed1ab_0 conda-forge
pyppeteer 1.0.2 pyhd8ed1ab_0 conda-forge
pyqt 5.15.7 py310h1fd54f2_3 conda-forge
pyqt5-sip 12.11.0 py310h00ffb61_3 conda-forge
pyquery 2.0.0 pyhd8ed1ab_0 conda-forge
pyrsistent 0.19.3 py310h8d17308_0 conda-forge
pysocks 1.7.1 pyh0701188_6 conda-forge
python 3.10.6 h9a09f29_0_cpython conda-forge
python-dateutil 2.8.2 pyhd8ed1ab_0 conda-forge
python-dotenv 1.0.0 pyhd8ed1ab_0 conda-forge
python-fastjsonschema 2.16.3 pyhd8ed1ab_0 conda-forge
python-json-logger 2.0.7 pyhd8ed1ab_0 conda-forge
python-tzdata 2023.2 pyhd8ed1ab_0 conda-forge
python-wget 3.2 py_0 conda-forge
python_abi 3.10 3_cp310 conda-forge
pytz 2022.7.1 pyhd8ed1ab_0 conda-forge
pytz-deprecation-shim 0.1.0.post0 py310h5588dad_3 conda-forge
pyviz_comms 2.2.1 pyhd8ed1ab_1 conda-forge
pywin32 304 py310h00ffb61_2 conda-forge
pywinpty 2.0.10 py310h00ffb61_0 conda-forge
pyyaml 6.0 py310h8d17308_5 conda-forge
pyzmq 25.0.2 py310hcd737a0_0 conda-forge
qrcode 7.4.2 pyhd8ed1ab_0 conda-forge
qt-main 5.15.6 h068e40c_5 conda-forge
qtconsole 5.4.1 pyhd8ed1ab_0 conda-forge
qtconsole-base 5.4.1 pyha770c72_0 conda-forge
qtpy 2.3.0 pyhd8ed1ab_0 conda-forge
re2 2022.06.01 h0e60522_1 conda-forge
reproc 14.2.4 hcfcfb64_0 conda-forge
reproc-cpp 14.2.4 h63175ca_0 conda-forge
requests 2.28.2 pyhd8ed1ab_0 conda-forge
requests-html 0.10.0 pyhd8ed1ab_0 conda-forge
rfc3339-validator 0.1.4 pyhd8ed1ab_0 conda-forge
rfc3986-validator 0.1.1 pyh9f0ad1d_0 conda-forge
rich 13.3.2 pyhd8ed1ab_0 conda-forge
ruamel.yaml 0.17.21 py310h8d17308_3 conda-forge
ruamel.yaml.clib 0.2.7 py310h8d17308_1 conda-forge
scikit-learn 1.2.2 py310hd266714_1 conda-forge
scipy 1.10.1 py310h578b7cb_0 conda-forge
seaborn 0.12.0 hd8ed1ab_0 conda-forge
seaborn-base 0.12.0 pyhd8ed1ab_0 conda-forge
selenium 4.6.0 pyhd8ed1ab_0 conda-forge
semver 2.13.0 pyh9f0ad1d_0 conda-forge
send2trash 1.8.0 pyhd8ed1ab_0 conda-forge
service_identity 18.1.0 py_0 conda-forge
setuptools 67.6.0 pyhd8ed1ab_0 conda-forge
sgmllib3k 1.0.0 pypi_0 pypi
shellingham 1.5.1 pyhd8ed1ab_0 conda-forge
sip 6.7.7 py310h00ffb61_0 conda-forge
six 1.16.0 pyh6c4a22f_0 conda-forge
smart_open 5.2.1 pyhd8ed1ab_0 conda-forge
smmap 3.0.5 pyh44b312d_0 conda-forge
snappy 1.1.10 hfb803bf_0 conda-forge
sniffio 1.3.0 pyhd8ed1ab_0 conda-forge
sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge
soupsieve 2.3.2.post1 pyhd8ed1ab_0 conda-forge
spacy 3.5.3 py310h220cb41_0 conda-forge
spacy-legacy 3.0.12 pyhd8ed1ab_0 conda-forge
spacy-loggers 1.0.4 pyhd8ed1ab_0 conda-forge
spacy-model-en_core_web_lg 3.5.0 pyhd8ed1ab_0 conda-forge
spyder-kernels 2.4.2 win_pyhd8ed1ab_0 conda-forge
sqlalchemy 2.0.7 py310h8d17308_0 conda-forge
sqlparse 0.4.3 pyhd8ed1ab_0 conda-forge
srsly 2.4.6 py310h00ffb61_0 conda-forge
stack_data 0.6.2 pyhd8ed1ab_0 conda-forge
statsmodels 0.13.5 py310h9b08ddd_2 conda-forge
streamlit 1.19.0 pyhd8ed1ab_0 conda-forge
streamlit-timeline 0.0.2 pypi_0 pypi
tbb 2021.8.0 h91493d7_0 conda-forge
tenacity 8.2.2 pyhd8ed1ab_0 conda-forge
terminado 0.15.0 py310h5588dad_0 conda-forge
thinc 8.1.9 py310h220cb41_0 conda-forge
threadpoolctl 3.1.0 pyh8a188c0_0 conda-forge
tinycss2 1.2.1 pyhd8ed1ab_0 conda-forge
tk 8.6.12 h8ffe710_0 conda-forge
toml 0.10.2 pyhd8ed1ab_0 conda-forge
tomli 2.0.1 pyhd8ed1ab_0 conda-forge
toolz 0.12.0 pyhd8ed1ab_0 conda-forge
tornado 6.2 py310h8d17308_1 conda-forge
tqdm 4.65.0 pyhd8ed1ab_1 conda-forge
traitlets 5.9.0 pyhd8ed1ab_0 conda-forge
trio 0.22.0 py310h5588dad_1 conda-forge
trio-websocket 0.10.2 pyhd8ed1ab_0 conda-forge
twisted 22.10.0 py310h8d17308_0 conda-forge
twisted-iocpsupport 1.0.2 py310h8d17308_3 conda-forge
txaio 23.1.1 pyhd8ed1ab_0 conda-forge
typer 0.4.2 pyhd8ed1ab_0 conda-forge
typing-extensions 4.5.0 hd8ed1ab_0 conda-forge
typing_extensions 4.5.0 pyha770c72_0 conda-forge
tzdata 2023b h71feb2d_0 conda-forge
tzlocal 4.3 py310h5588dad_0 conda-forge
ucrt 10.0.22621.0 h57928b3_0 conda-forge
unicodedata2 15.0.0 py310h8d17308_0 conda-forge
uri-template 1.2.0 pyhd8ed1ab_0 conda-forge
urllib3 1.26.15 pyhd8ed1ab_0 conda-forge
validators 0.20.0 pyhd8ed1ab_0 conda-forge
vc 14.3 hb6edc58_10 conda-forge
vc14_runtime 14.34.31931 h5081d32_13 conda-forge
vega_datasets 0.9.0 pyhd3deb0d_0 conda-forge
vs2015_runtime 14.34.31931 h4c5c07a_10 conda-forge
w3lib 2.1.1 pyhd8ed1ab_0 conda-forge
wasabi 0.10.1 pyhd8ed1ab_1 conda-forge
watchdog 3.0.0 py310h5588dad_0 conda-forge
wcwidth 0.2.6 pyhd8ed1ab_0 conda-forge
webcolors 1.12 pyhd8ed1ab_0 conda-forge
webdriver-manager 3.8.5 pyhd8ed1ab_0 conda-forge
webencodings 0.5.1 py_1 conda-forge
websocket-client 1.5.1 pyhd8ed1ab_0 conda-forge
websockets 10.4 py310h8d17308_1 conda-forge
wheel 0.40.0 pyhd8ed1ab_0 conda-forge
widgetsnbextension 4.0.6 pyhd8ed1ab_0 conda-forge
win_inet_pton 1.1.0 pyhd8ed1ab_6 conda-forge
winpty 0.4.3 4 conda-forge
wordcloud 1.9.1.1 py310h8d17308_0 conda-forge
wsproto 1.2.0 pyhd8ed1ab_0 conda-forge
xlrd 2.0.1 pyhd8ed1ab_3 conda-forge
xlwings 0.30.2 py310h5588dad_0 conda-forge
xz 5.2.6 h8d14728_0 conda-forge
yahoo-fin 0.8.9.1 pypi_0 pypi
yaml 0.2.5 h8ffe710_2 conda-forge
yaml-cpp 0.7.0 h63175ca_2 conda-forge
yfinance 0.2.18 pyhd8ed1ab_0 conda-forge
zeromq 4.3.4 h0e60522_1 conda-forge
zipp 3.15.0 pyhd8ed1ab_0 conda-forge
zlib 1.2.13 hcfcfb64_4 conda-forge
zope.interface 6.0 py310h8d17308_0 conda-forge
zstandard 0.19.0 py310h0009e47_1 conda-forge
zstd 1.5.2 h12be248_6 conda-forge

Additional information

If needed, add any other context about the problem here.

Hi @Richdev_Boston

Could you share a screenshot of the error

Also, it’s worth to investigate this a bit further, perhaps you could look into seeing if this error is exhibiting in other versions of Firefox? Also is the same version but on another PC or OS exhibiting the same error.