@umituz/react-native-firebase 1.13.150 → 1.13.152

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-firebase",
3
- "version": "1.13.150",
3
+ "version": "1.13.152",
4
4
  "description": "Unified Firebase package for React Native apps - Auth and Firestore services using Firebase JS SDK (no native modules).",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -3,7 +3,7 @@
3
3
  * React hooks for Firebase Auth state management
4
4
  */
5
5
 
6
- import { useRef, useEffect, useCallback } from 'react';
6
+ import { useRef, useEffect } from 'react';
7
7
  import { onAuthStateChanged, type Auth, type User } from 'firebase/auth';
8
8
 
9
9
  /**
@@ -16,7 +16,8 @@ export type { FirebaseApp } from './initializers/FirebaseAppInitializer';
16
16
 
17
17
  // Export singleton for backward compatibility
18
18
  export { FirebaseClientSingleton } from './clients/FirebaseClientSingleton';
19
- export const firebaseClient = require('./clients/FirebaseClientSingleton').FirebaseClientSingleton.getInstance();
19
+ import { FirebaseClientSingleton as FCSingleton } from './clients/FirebaseClientSingleton';
20
+ export const firebaseClient = FCSingleton.getInstance();
20
21
 
21
22
  // Re-export types and functions
22
23
  export type {