lunarflu HF Staff commited on
Commit
be8f1c0
·
verified ·
1 Parent(s): cfa119b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -54,12 +54,13 @@ def hello(profile: gr.OAuthProfile | None, request: gr.Request) -> str:
54
  return f"✅ Successfully logged in as {profile.username}. User ID: {user_id}"
55
 
56
  with gr.Blocks() as demo:
57
- with gr.Column():
58
  gr.Markdown("# Discord Verification Space")
59
  with gr.Row():
60
  login_button = gr.LoginButton()
61
- m1 = gr.Markdown()
62
- demo.load(hello, inputs=None, outputs=m1)
 
63
 
64
 
65
 
 
54
  return f"✅ Successfully logged in as {profile.username}. User ID: {user_id}"
55
 
56
  with gr.Blocks() as demo:
57
+ with gr.Row():
58
  gr.Markdown("# Discord Verification Space")
59
  with gr.Row():
60
  login_button = gr.LoginButton()
61
+
62
+ m1 = gr.Markdown()
63
+ demo.load(hello, inputs=None, outputs=m1)
64
 
65
 
66