Skip to content

Commit 526aca7

Browse files
authored
docs: use assignment not comparison in deprecation strict mode example (#8599)
1 parent 0e35121 commit 526aca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/migrating-to-v22.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This is useful to help you quickly locate any remaining usage of the deprecated
2222
Note that there may be modular API implementation errors within the react-native-firebase modules, this may still be useful as a troubleshooting aid when collaborating with the maintainers to correct these errors.
2323

2424
```js
25-
globalThis.RNFB_MODULAR_DEPRECATION_STRICT_MODE === true;
25+
globalThis.RNFB_MODULAR_DEPRECATION_STRICT_MODE = true;
2626
```
2727

2828
# Migrating to React Native modular API

0 commit comments

Comments
 (0)