Skip to content

Commit

Permalink
fix: resolve string formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
emmakuen committed Dec 28, 2022
1 parent 6c2000b commit c5bde76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cargo-shuttle/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ impl Client {
}

pub async fn get_projects_list(&self) -> Result<Vec<project::Response>> {
let path = format!("/projects");
let path = ("/projects").to_string();

self.get(path).await
}
Expand Down

0 comments on commit c5bde76

Please sign in to comment.