Chris Addis commited on
Commit
b13d707
·
1 Parent(s): 63f771a

authentication

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -433,7 +433,7 @@ def create_demo_free():
433
  gr.LoginButton()
434
  gr.Markdown("Please Login")
435
  m2 = gr.Markdown()
436
- m3 = gr.Markdown(AUTHORIZED_USER_IDS)
437
  demo.load(hello, inputs=None, outputs=m2)
438
  return demo
439
 
 
433
  gr.LoginButton()
434
  gr.Markdown("Please Login")
435
  m2 = gr.Markdown()
436
+ m3 = gr.Markdown(f"Authorized User IDs: {', '.join(AUTHORIZED_USER_IDS)}")
437
  demo.load(hello, inputs=None, outputs=m2)
438
  return demo
439