Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SECURITY: FIX unintended Email protocol resolution #3759

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/_getting-started-macos-ios.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ On top of this, it's possible to add any other environment variable and to sourc
:::info
If you are already using [NVM](http://nvm.sh/) (a command which helps you install and switch between versions of Node.js) and [zsh](https://ohmyz.sh/), you might want to move the code that initialize NVM from your `~/.zshrc` into a `~/.zshenv` file to help Xcode find your Node executable:

```
```zsh
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
```
Expand Down
2 changes: 1 addition & 1 deletion docs/_integration-with-existing-apps-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $ yarn add react-native

This will print a message similar to the following (scroll up in the yarn output to see it):

> warning "react-native@0.70.5" has unmet peer dependency "react@18.1.0"
> warning "`react-native@0.70.5`" has unmet peer dependency "`react@18.1.0`"

This is OK, it means we also need to install React:

Expand Down
2 changes: 1 addition & 1 deletion docs/_integration-with-existing-apps-kotlin.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $ yarn add react-native

This will print a message similar to the following (scroll up in the yarn output to see it):

> warning "react-native@0.70.5" has unmet peer dependency "react@18.1.0"
> warning "`react-native@0.70.5`" has unmet peer dependency "`react@18.1.0`"

This is OK, it means we also need to install React:

Expand Down
2 changes: 1 addition & 1 deletion docs/_integration-with-existing-apps-objc.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ yarn add react-native

This will print a message similar to the following (scroll up in the yarn output to see it):

> warning "react-native@0.52.2" has unmet peer dependency "react@16.2.0".
> warning "`react-native@0.52.2`" has unmet peer dependency "`react@16.2.0`".

This is OK, it means we also need to install React:

Expand Down
2 changes: 1 addition & 1 deletion docs/_integration-with-existing-apps-swift.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ $ yarn add react-native

This will print a message similar to the following (scroll up in the yarn output to see it):

> warning "react-native@0.52.2" has unmet peer dependency "react@16.2.0".
> warning "`react-native@0.52.2`" has unmet peer dependency "`react@16.2.0`".

This is OK, it means we also need to install React:

Expand Down