diff --git a/src-tauri/src/rpc.rs b/src-tauri/src/rpc.rs index 99de152..71347d7 100644 --- a/src-tauri/src/rpc.rs +++ b/src-tauri/src/rpc.rs @@ -88,8 +88,7 @@ pub async fn make_request( }; let mut builder = client.post(url).header(CONTENT_TYPE, "application/json"); if let Some(token) = token { - builder = builder.header(AUTHORIZATION, format!("Bearer {token}")); - println!("Token: {}", token); + builder = builder.header(AUTHORIZATION, format!("Bearer {token}"));W } let resp = builder.json(&body).send().await?.json::().await?; match resp.result {