diff --git a/examples/async-provider/README.md b/examples/async-provider/README.md index 62df4cc..300e71a 100644 --- a/examples/async-provider/README.md +++ b/examples/async-provider/README.md @@ -13,7 +13,7 @@ yarn Follow these steps to run the example app: * In client/index.js, set `clientSideID` to your own Client-side ID. You can find -this in your ld portal under Account settings / Projects. +this in your LaunchDarkly portal under Account settings / Projects. * Create a flag called `dev-test-flag` in your project. Make sure you make the flag available to the client-side SDK. diff --git a/examples/async-provider/src/client/index.js b/examples/async-provider/src/client/index.js index 66474bf..95f9dd6 100644 --- a/examples/async-provider/src/client/index.js +++ b/examples/async-provider/src/client/index.js @@ -5,7 +5,9 @@ import { asyncWithLDProvider } from 'launchdarkly-react-client-sdk'; import App from '../universal/app'; (async () => { - const LDProvider = await asyncWithLDProvider({ clientSideID: '59b2b2596d1a250b1c78baa4' }); + // Set clientSideID to your own Client-side ID. You can find this in + // your LaunchDarkly portal under Account settings / Projects + const LDProvider = await asyncWithLDProvider({ clientSideID: 'YOUR_CLIENT_SIDE_ID_HERE' }); render( diff --git a/examples/hoc/README.md b/examples/hoc/README.md index b3a04cd..874f3af 100644 --- a/examples/hoc/README.md +++ b/examples/hoc/README.md @@ -13,7 +13,7 @@ yarn Follow these steps to run the example app: * In app.js, set `clientSideID` to your own Client-side ID. You can find -this in your ld portal under Account settings / Projects. +this in your LaunchDarkly portal under Account settings / Projects. * Create a flag called `dev-test-flag` in your project. Make sure you make the flag available to the client-side SDK. diff --git a/examples/hoc/src/universal/app.js b/examples/hoc/src/universal/app.js index 5930fb7..e11022d 100644 --- a/examples/hoc/src/universal/app.js +++ b/examples/hoc/src/universal/app.js @@ -21,5 +21,5 @@ const App = () => ( ); // Set clientSideID to your own Client-side ID. You can find this in -// your ld portal under Account settings / Projects -export default withLDProvider({ clientSideID: '59b2b2596d1a250b1c78baa4' })(App); +// your LaunchDarkly portal under Account settings / Projects +export default withLDProvider({ clientSideID: 'YOUR_CLIENT_SIDE_ID_HERE' })(App);