From 947d9fc40ce8e3f789afa0bdbfb8b3be368c60ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivar=20Conradi=20=C3=98sthus?= Date: Mon, 11 Apr 2022 22:23:22 +0200 Subject: [PATCH] docs: correct proxy url to demo instance --- website/docs/user_guide/quickstart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/user_guide/quickstart.md b/website/docs/user_guide/quickstart.md index 3a75da90f0..c54da05141 100644 --- a/website/docs/user_guide/quickstart.md +++ b/website/docs/user_guide/quickstart.md @@ -24,7 +24,7 @@ In order to create a toggle through the UI, [you can follow this guide](create-f Connection details: ``` -Api URL: https://app.unleash-hosted.com/demo/proxy +Api URL: https://app.unleash-hosted.com/demo/api/proxy Secret key: proxy-123 (edited) ``` @@ -41,7 +41,7 @@ Here is a connection example using the javascript proxy SDK: import { UnleashClient } from 'unleash-proxy-client'; const unleash = new UnleashClient({ - url: 'https://app.unleash-hosted.com/demo/proxy', + url: 'https://app.unleash-hosted.com/demo/api/proxy', clientKey: 'proxy-123', appName: 'my-webapp', });