@umituz/react-native-settings 4.17.11 → 4.17.12

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": "4.17.11",
3
+ "version": "4.17.12",
4
4
  "description": "Settings management for React Native apps - user preferences, theme, language, notifications",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -246,7 +246,7 @@ export const SettingsContent: React.FC<SettingsContentProps> = ({
246
246
  <SettingsSection title={t("settings.support.title") || "Support"}>
247
247
  {(features.feedback || features.rating) && (
248
248
  <SupportSection
249
- renderSection={() => null}
249
+ renderSection={(props: any) => <>{props.children}</>}
250
250
  renderItem={(props: any) => <SettingItem {...props} />}
251
251
  feedbackConfig={{
252
252
  enabled: features.feedback,
@@ -269,7 +269,7 @@ export const SettingsContent: React.FC<SettingsContentProps> = ({
269
269
 
270
270
  {features.faqs && FAQSection && (
271
271
  <FAQSection
272
- renderSection={() => null}
272
+ renderSection={(props: any) => <>{props.children}</>}
273
273
  renderItem={(props: any) => <SettingItem {...props} />}
274
274
  config={{
275
275
  enabled: features.faqs,