@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
|
@@ -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={() =>
|
|
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={() =>
|
|
272
|
+
renderSection={(props: any) => <>{props.children}</>}
|
|
273
273
|
renderItem={(props: any) => <SettingItem {...props} />}
|
|
274
274
|
config={{
|
|
275
275
|
enabled: features.faqs,
|