react-hotkeys-hook 4.3.6-4 → 4.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -86,9 +86,9 @@ returned by the `useHotkeysContext()` hook. Note that you have to have your app
86
86
  ```jsx harmony
87
87
  const App = () => {
88
88
  return (
89
- <HotkeysProvider initiallyActiveScopes={['settings']}>
90
- <ExampleComponent />
91
- </HotkeysProvider>
89
+ <HotkeysProvider initiallyActiveScopes={['settings']}>
90
+ <ExampleComponent />
91
+ </HotkeysProvider>
92
92
  )
93
93
  }
94
94
 
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "react-hotkeys-hook",
3
- "version": "4.3.6-4",
3
+ "description": "React hook for handling keyboard shortcuts",
4
+ "version": "4.3.6",
4
5
  "repository": "https://JohannesKlauss@github.com/JohannesKlauss/react-keymap-hook.git",
5
6
  "homepage": "https://johannesklauss.github.io/react-hotkeys-hook/",
6
7
  "author": "Johannes Klauss",