From c8d9f2be4dcc28a01d35aa489d7ba0d2dcb06d57 Mon Sep 17 00:00:00 2001 From: Sergio Ribera <56278796+SergioRibera@users.noreply.github.com> Date: Mon, 15 Jul 2024 20:06:06 -0400 Subject: [PATCH] fix: build release contributors --- src/pages/contributors.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pages/contributors.rs b/src/pages/contributors.rs index 72d818c..c962f77 100644 --- a/src/pages/contributors.rs +++ b/src/pages/contributors.rs @@ -67,6 +67,7 @@ async fn fetch_contributors() -> Result> { let res: leptos::serde_json::Value = client .post("https://api.github.com/graphql") + .json(&request_body) .send() .await? .json() @@ -94,11 +95,11 @@ pub fn Contributors() -> impl IntoView { } };