efecelik Claude Opus 4.5 commited on
Commit
321f3e9
·
1 Parent(s): d6b463b

Fix: Disable SSR mode for better JavaScript interactions

Browse files

- SSR (Server-Side Rendering) was causing button clicks to not work
- Added ssr_mode=False to demo.launch()

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -467,4 +467,4 @@ with gr.Blocks(
467
  """)
468
 
469
  if __name__ == "__main__":
470
- demo.launch()
 
467
  """)
468
 
469
  if __name__ == "__main__":
470
+ demo.launch(ssr_mode=False)