@lumra/react 0.1.3 → 0.1.5

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -30,10 +30,10 @@ export function VideoPage() {
30
30
 
31
31
  ```tsx
32
32
  import { LumraPlayer } from '@lumra/react'
33
- import { useFluxaPaywall } from '@lumra/sdk' // optional SDK hook
33
+ import { useLumraPaywall } from '@lumra/sdk' // optional SDK hook
34
34
 
35
35
  export function VideoPage({ videoId, src }) {
36
- const { locked, unlock } = useFluxaPaywall(videoId)
36
+ const { locked, unlock } = useLumraPaywall(videoId)
37
37
 
38
38
  return (
39
39
  <LumraPlayer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumra/react",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },