Skip to content

Commit 3113247

Browse files
prepare 2.20.2 release (#50)
1 parent 9c77dbf commit 3113247

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

examples/async-provider/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ yarn
1313
Follow these steps to run the example app:
1414

1515
* In client/index.js, set `clientSideID` to your own Client-side ID. You can find
16-
this in your ld portal under Account settings / Projects.
16+
this in your LaunchDarkly portal under Account settings / Projects.
1717

1818
* Create a flag called `dev-test-flag` in your project. Make sure you
1919
make the flag available to the client-side SDK.

examples/async-provider/src/client/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ import { asyncWithLDProvider } from 'launchdarkly-react-client-sdk';
55
import App from '../universal/app';
66

77
(async () => {
8-
const LDProvider = await asyncWithLDProvider({ clientSideID: '59b2b2596d1a250b1c78baa4' });
8+
// Set clientSideID to your own Client-side ID. You can find this in
9+
// your LaunchDarkly portal under Account settings / Projects
10+
const LDProvider = await asyncWithLDProvider({ clientSideID: 'YOUR_CLIENT_SIDE_ID_HERE' });
911

1012
render(
1113
<BrowserRouter>

examples/hoc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ yarn
1313
Follow these steps to run the example app:
1414

1515
* In app.js, set `clientSideID` to your own Client-side ID. You can find
16-
this in your ld portal under Account settings / Projects.
16+
this in your LaunchDarkly portal under Account settings / Projects.
1717

1818
* Create a flag called `dev-test-flag` in your project. Make sure you
1919
make the flag available to the client-side SDK.

examples/hoc/src/universal/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ const App = () => (
2121
);
2222

2323
// Set clientSideID to your own Client-side ID. You can find this in
24-
// your ld portal under Account settings / Projects
25-
export default withLDProvider({ clientSideID: '59b2b2596d1a250b1c78baa4' })(App);
24+
// your LaunchDarkly portal under Account settings / Projects
25+
export default withLDProvider({ clientSideID: 'YOUR_CLIENT_SIDE_ID_HERE' })(App);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"typescript": "~3.8.3"
5757
},
5858
"dependencies": {
59-
"launchdarkly-js-client-sdk": "2.18.0",
59+
"launchdarkly-js-client-sdk": "2.18.1",
6060
"lodash.camelcase": "^4.3.0",
6161
"uuid": "^3.3.2"
6262
},

0 commit comments

Comments
 (0)