fix order state url (#76)

This commit is contained in:
Itay Shakury 2019-10-20 18:02:01 +03:00 committed by Aman Bhardwaj
parent 649b96db01
commit 97cc202509
1 changed files with 1 additions and 1 deletions

View File

@ -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) => {