关于camera_input的一个bug?

当我运行这段代码是会在显示界面上报错,但命令行中没有报错
import streamlit as st
from PIL import Image
import warnings
warnings.filterwarnings (‘ignore’)
enable = st.checkbox(“Enable camera”)
picture = st.camera_input(“Take a picture”, disabled=not enable)
if picture:
image2 = Image.open(picture)
image2.save(“temp.jpg”)
网页端报错如下
NotFoundError: Failed to execute ‘removeChild’ on ‘Node’: The node to be removed is not a child of this node.

at Zj (http://localhost:8501/static/js/index.Phesr84n.js:48:28719)
at ck (http://localhost:8501/static/js/index.Phesr84n.js:48:30155)
at dk (http://localhost:8501/static/js/index.Phesr84n.js:48:30670)
at ck (http://localhost:8501/static/js/index.Phesr84n.js:48:30323)
at dk (http://localhost:8501/static/js/index.Phesr84n.js:48:30447)
at ck (http://localhost:8501/static/js/index.Phesr84n.js:48:30323)
at dk (http://localhost:8501/static/js/index.Phesr84n.js:48:30447)
at ck (http://localhost:8501/static/js/index.Phesr84n.js:48:30323)
at dk (http://localhost:8501/static/js/index.Phesr84n.js:48:33701)
at ck (http://localhost:8501/static/js/index.Phesr84n.js:48:30323)

请问这该怎么办?