Spaces:
Sleeping
Sleeping
added the style fix to the js
Browse files
app.py
CHANGED
|
@@ -52,8 +52,8 @@ function sendMIDI() {
|
|
| 52 |
with gr.Blocks() as demo:
|
| 53 |
gr.HTML(midi_js)
|
| 54 |
|
| 55 |
-
# ✅ Mount Gradio
|
| 56 |
-
app
|
| 57 |
|
| 58 |
# ✅ Debug: Print all registered FastAPI routes
|
| 59 |
print("🚀 FastAPI Routes Registered:")
|
|
|
|
| 52 |
with gr.Blocks() as demo:
|
| 53 |
gr.HTML(midi_js)
|
| 54 |
|
| 55 |
+
# ✅ Mount Gradio at `/`
|
| 56 |
+
app = gr.mount_gradio_app(app, demo, path="/")
|
| 57 |
|
| 58 |
# ✅ Debug: Print all registered FastAPI routes
|
| 59 |
print("🚀 FastAPI Routes Registered:")
|