Oysiyl Claude Sonnet 4.5 commited on
Commit
e8b3cf1
·
1 Parent(s): 65d35fe

Fix: Revert share=True to share=False

Browse files

Accidentally changed share=False to share=True in the gallery
refactoring commit. Reverting to share=False as it should be.

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

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

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3942,6 +3942,6 @@ if __name__ == "__main__" and not os.environ.get("QR_TESTING_MODE"):
3942
 
3943
  # ARTISTIC QR TAB
3944
  app.queue() # Required for gr.Progress() to work!
3945
- app.launch(share=True, mcp_server=True)
3946
  # Note: Automatic file cleanup via delete_cache not available in Gradio 5.49.1
3947
  # Files will be cleaned up when the server is restarted
 
3942
 
3943
  # ARTISTIC QR TAB
3944
  app.queue() # Required for gr.Progress() to work!
3945
+ app.launch(share=False, mcp_server=True)
3946
  # Note: Automatic file cleanup via delete_cache not available in Gradio 5.49.1
3947
  # Files will be cleaned up when the server is restarted