From 97cc202509ed8c80fdf7207c7c20a66e8c31ca4e Mon Sep 17 00:00:00 2001 From: Itay Shakury Date: Sun, 20 Oct 2019 18:02:01 +0300 Subject: [PATCH] fix order state url (#76) --- 1.hello-world/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) => {