From 7330eb87f357bb8da8c89aa0b0e7531f7bee4d08 Mon Sep 17 00:00:00 2001 From: Ljupcho Kotev Date: Thu, 30 Sep 2021 18:18:16 +0200 Subject: [PATCH] Fix example in integration-react/CHANGELOG.md Signed-off-by: Ljupcho Kotev --- packages/integration-react/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/integration-react/CHANGELOG.md b/packages/integration-react/CHANGELOG.md index 9cfb42e097..18441c69aa 100644 --- a/packages/integration-react/CHANGELOG.md +++ b/packages/integration-react/CHANGELOG.md @@ -45,7 +45,7 @@ }); ``` - The additional `gheAuthApiRef` utility API can be defined either inside the app itself if it's only used for this purpose, for inside an internal common package for APIs, such as `@internal/apis`: + The additional `gheAuthApiRef` utility API can be defined either inside the app itself if it's only used for this purpose, or inside an internal common package for APIs, such as `@internal/apis`: ```ts const gheAuthApiRef: ApiRef = @@ -58,7 +58,7 @@ ```ts createApiFactory({ - api: githubAuthApiRef, + api: gheAuthApiRef, deps: { discoveryApi: discoveryApiRef, oauthRequestApi: oauthRequestApiRef,