diff --git a/web/src/api.rs b/web/src/api.rs index 17826b6..32cceaa 100644 --- a/web/src/api.rs +++ b/web/src/api.rs @@ -172,7 +172,7 @@ impl HttpStore { id: S, ) -> Result, Error> { let mut path = self.root.clone(); - path.push_str("/recipe"); + path.push_str("/recipe/"); path.push_str(id.as_ref()); let resp = reqwasm::http::Request::get(&path).send().await?; if resp.status() != 200 {