Skip to content

Commit 40c0726

Browse files
authored
Update 2023-02-06-catering-to-the-client-side.md - fixed variable name (#1020)
## This PR Fixing useFormalSalutation variable in documentation Signed-off-by: Michal Rorat <[email protected]>
1 parent d7ab691 commit 40c0726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blog/2023-02-06-catering-to-the-client-side.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ In order to align the OpenFeature API with most existing feature flagging provid
180180
```javascript
181181
function Salutation() {
182182
const useFormalSalutation = client.getBooleanValue('use-formal-salutation', false);
183-
if (formalSalutation) {
183+
if (useFormalSalutation) {
184184
return <blink>Good day!</blink>;
185185
} else {
186186
return <blink>What's up!</blink>;

0 commit comments

Comments
 (0)