userlens-analytics-sdk 0.1.65 → 0.1.67

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.
package/README.md CHANGED
@@ -249,7 +249,7 @@ Under the hood, the React wrapper:
249
249
  #### 🛠 Usage Example
250
250
 
251
251
  ```tsx
252
- import { UserlensProvider } from "userlens-analytics-sdk";
252
+ import UserlensProvider from "userlens-analytics-sdk/react";
253
253
 
254
254
  const config = useMemo(
255
255
  () => ({
@@ -294,7 +294,7 @@ return (
294
294
  Then, you can access the SDK instances anywhere using the `useUserlens()` hook:
295
295
 
296
296
  ```ts
297
- import { useUserlens } from "userlens-analytics-sdk";
297
+ import { useUserlens } from "userlens-analytics-sdk/react";
298
298
 
299
299
  const { collector, sessionRecorder } = useUserlens();
300
300