Spaces:
Runtime error
Runtime error
Remove demo.queue() call from app.py to streamline initialization process.
Browse files
app.py
CHANGED
|
@@ -16,7 +16,6 @@ import json
|
|
| 16 |
theme = gr.Theme.from_hub("LPX55/modal_ai")
|
| 17 |
|
| 18 |
with gr.Blocks(theme=theme, js=js_func, css=css_func) as demo:
|
| 19 |
-
demo.queue()
|
| 20 |
show_space_tab = gr.State(False)
|
| 21 |
# Iframe lazy load pattern
|
| 22 |
heavy_iframe_src = gr.State("")
|
|
|
|
| 16 |
theme = gr.Theme.from_hub("LPX55/modal_ai")
|
| 17 |
|
| 18 |
with gr.Blocks(theme=theme, js=js_func, css=css_func) as demo:
|
|
|
|
| 19 |
show_space_tab = gr.State(False)
|
| 20 |
# Iframe lazy load pattern
|
| 21 |
heavy_iframe_src = gr.State("")
|