@umituz/react-native-settings 5.2.22 → 5.2.24

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-settings",
3
- "version": "5.2.22",
3
+ "version": "5.2.24",
4
4
  "description": "Complete settings hub for React Native apps - consolidated package with settings, localization, about, legal, appearance, feedback, FAQs, rating, and gamification",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -143,7 +143,7 @@ export const useSettingsScreenConfig = (
143
143
  const accountConfig = useMemo(() => createAccountConfig({
144
144
  displayName: userProfileData?.displayName || user?.displayName || undefined,
145
145
  userId: userProfileData?.userId || user?.uid || undefined,
146
- photoURL: user?.photoURL,
146
+ photoURL: user?.photoURL || undefined,
147
147
  isAnonymous: user?.isAnonymous,
148
148
  avatarUrl: userProfileData?.avatarUrl,
149
149
  onSignIn: handleSignIn,