From 5a93a166ab9cf4d6b787405c7e9960eb6f18bf02 Mon Sep 17 00:00:00 2001 From: Hazem Khaled Date: Mon, 27 Feb 2023 22:41:06 +0300 Subject: [PATCH] typo: UpstashAPL need restURL not restUrl (#196) * typo restURL not restUrl * Create .changeset/wild-suits-hug.md --------- Co-authored-by: Lukasz Ostrowski --- .changeset/wild-suits-hug.md | 5 +++++ docs/apl.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/wild-suits-hug.md diff --git a/.changeset/wild-suits-hug.md b/.changeset/wild-suits-hug.md new file mode 100644 index 0000000..fec8a2b --- /dev/null +++ b/.changeset/wild-suits-hug.md @@ -0,0 +1,5 @@ +--- +"@saleor/app-sdk": patch +--- + +Fix typo in UpstashAPL docs diff --git a/docs/apl.md b/docs/apl.md index 4b37898..a9c6d93 100644 --- a/docs/apl.md +++ b/docs/apl.md @@ -179,7 +179,7 @@ import { UpstashAPL } from "@saleor/app-sdk/APL"; const apl = new UpstashAPL({ restToken: "XXXXXXXXXXXXXX", - restUrl: "https://eu2-red-panda-00000.upstash.io", + restURL: "https://eu2-red-panda-00000.upstash.io", }); ```