Skip to content

Commit

Permalink
fix: Allow React 18 as peer dependency (#3728)
Browse files Browse the repository at this point in the history
Avoid peer dependency warning when using React 18
  • Loading branch information
KATT committed Jan 25, 2022
1 parent 4824f8c commit 1bf56a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@
},
"peerDependencies": {
"nodemailer": "^6.6.5",
"react": "^17.0.2",
"react-dom": "^17.0.2"
"react": "^17.0.2 || ^18.0.0-0",
"react-dom": "^17.0.2 || ^18.0.0-0",
},
"peerDependenciesMeta": {
"nodemailer": {
Expand Down

0 comments on commit 1bf56a2

Please sign in to comment.