diff --git a/1.hello-world/README.md b/1.hello-world/README.md index 7bfc846e..95ccf615 100644 --- a/1.hello-world/README.md +++ b/1.hello-world/README.md @@ -77,7 +77,7 @@ We also expose a GET endpoint, `/order`: ```js app.get('/order', (_req, res) => { - fetch(`${daprUrl}/state/order`) + fetch(`${stateUrl}/order`) .then((response) => { return response.json(); }).then((orders) => {