Tonic commited on
Commit
44a43a8
1 Parent(s): 8e698e5

Fixes a bug experienced by some users

Browse files

![image.png](https://cdn-uploads.huggingface.co/production/uploads/62a3bb1cd0d8c2c2169f0b88/GqdY4HAsH0-on400_v3j1.png)

Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -428,5 +428,6 @@ if __name__ == "__main__":
428
  demo.launch(
429
  server_name="0.0.0.0", # Listen on all network interfaces
430
  server_port=7860, # Use a specific port
431
- share=False, # Disable public URL sharing
 
432
  )
 
428
  demo.launch(
429
  server_name="0.0.0.0", # Listen on all network interfaces
430
  server_port=7860, # Use a specific port
431
+ share=False, # Disable public URL sharing
432
+ ssr_mode=False # Fixes bug for some users
433
  )