@umituz/react-native-settings 5.2.43 → 5.2.45

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.43",
3
+ "version": "5.2.45",
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",
@@ -152,7 +152,6 @@ export const useSettingsScreenConfig = (
152
152
  translations: translations?.account as any,
153
153
  }), [user, userProfileData, handleSignIn, handleSignOut, handleDeleteAccount, translations]);
154
154
 
155
- // FAQ data passed through as-is (app sends pre-translated data)
156
155
  const translatedFaqData = useMemo(() =>
157
156
  translateFAQData(faqData, appInfo),
158
157
  [faqData, appInfo]
@@ -1,15 +1,6 @@
1
- /**
2
- * FAQ Translation Utility
3
- * App sends pre-translated FAQ data - this function passes it through unchanged.
4
- */
5
-
6
1
  import type { FAQData } from "../navigation/types";
7
2
  import type { AppInfo } from "../navigation/types";
8
3
 
9
- /**
10
- * Passes FAQ data through unchanged.
11
- * The main app is responsible for translating FAQ keys before passing them here.
12
- */
13
4
  export const translateFAQData = (
14
5
  faqData: FAQData | undefined,
15
6
  _appInfo: AppInfo