@umituz/react-native-auth 1.6.1 → 1.6.2

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-auth",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Authentication service for React Native apps - Secure, type-safe, and production-ready. Provider-agnostic design supports Firebase Auth and can be adapted for Supabase or other providers.",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -204,6 +204,11 @@ export class AuthService implements IAuthService {
204
204
  }
205
205
  }
206
206
 
207
+ // Clear guest mode when user signs up
208
+ if (this.isGuestMode) {
209
+ this.isGuestMode = false;
210
+ }
211
+
207
212
  // Emit event for AppNavigator to handle navigation
208
213
  DeviceEventEmitter.emit("user-authenticated", { userId: userCredential.user.uid });
209
214