From aaecfe54d913c1c4713e23233f32ae1e4239730e Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Thu, 18 Jan 2024 18:25:13 +0200 Subject: [PATCH] Themes: fix bogus header image URL (#7060) * Themes: fix bogus header image URL * add changeset --------- Co-authored-by: gradio-pr-bot --- .changeset/tame-cloths-cough.md | 5 +++++ gradio/themes/app.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/tame-cloths-cough.md diff --git a/.changeset/tame-cloths-cough.md b/.changeset/tame-cloths-cough.md new file mode 100644 index 000000000000..a3449fb0e387 --- /dev/null +++ b/.changeset/tame-cloths-cough.md @@ -0,0 +1,5 @@ +--- +"gradio": minor +--- + +feat:Themes: fix bogus header image URL diff --git a/gradio/themes/app.py b/gradio/themes/app.py index 33f310fa2020..78bbc62720df 100644 --- a/gradio/themes/app.py +++ b/gradio/themes/app.py @@ -73,7 +73,7 @@ def go(*args): time.sleep(3) - return "https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpgjpg" + return "https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg" go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")