avsolatorio commited on
Commit
a0af611
·
1 Parent(s): b1845bc

Ignore auto dark mode

Browse files

Signed-off-by: Aivin V. Solatorio <avsolatorio@gmail.com>

Files changed (1) hide show
  1. mcp_remote_client.py +2 -1
mcp_remote_client.py CHANGED
@@ -412,7 +412,8 @@ def gradio_interface(
412
  footer{display:none !important}
413
  """
414
 
415
- with gr.Blocks(title="WDI MCP Client", css=custom_css) as demo:
 
416
  gr.Markdown("# Development Data Chat")
417
  # gr.Markdown("Connect to the WDI MCP server and chat with the assistant")
418
 
 
412
  footer{display:none !important}
413
  """
414
 
415
+ # Disable auto-dark mode by setting theme to None
416
+ with gr.Blocks(title="WDI MCP Client", css=custom_css, theme=None) as demo:
417
  gr.Markdown("# Development Data Chat")
418
  # gr.Markdown("Connect to the WDI MCP server and chat with the assistant")
419