Skip to content
This repository has been archived by the owner on Aug 24, 2023. It is now read-only.

Commit

Permalink
Fix React 17 support (#64)
Browse files Browse the repository at this point in the history
Avoid errors during npm install with React 17.x.
  • Loading branch information
AmsterGet authored Apr 6, 2023
1 parent 54f6b78 commit ffe80eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"umd"
],
"peerDependencies": {
"react": "16.x"
"react": ">= 16.x < 18"
},
"devDependencies": {
"nwb": "0.25.x",
Expand Down

2 comments on commit ffe80eb

@williank
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you do the same for React 18?

@Ngineer101
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @williank, can you create a new PR for this change, please? :)

Please sign in to comment.