File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export const GroupedInsetListCard: FC<
5858 { ...props }
5959 style = { [ { marginHorizontal : GROUPED_LIST_MARGIN } , props . style ] }
6060 className = { cn (
61- "bg-secondary-system-grouped-background flex-1 overflow-hidden rounded-[10px]" ,
61+ "bg-secondary-system-grouped-background flex overflow-hidden rounded-[10px]" ,
6262 className ,
6363 ) }
6464 >
@@ -82,7 +82,7 @@ export const GroupedInsetListCard: FC<
8282 : NextSeparatorComponent
8383
8484 return (
85- < Fragment key = { index } >
85+ < Fragment key = { typeof child === "object" && "key" in child ? child . key : index } >
8686 { child }
8787 { ! isLast &&
8888 ( NextSeparatorElement ?? (
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export const DiscoverSettingsScreen = () => {
2323 Header = { < NavigationBlurEffectHeaderView title = { t ( "discoverFilters.title" ) } /> }
2424 >
2525 < GroupedInsetListSectionHeader label = { t ( "discoverFilters.filters" ) } marginSize = "small" />
26- < GroupedInsetListCard >
26+ < GroupedInsetListCard className = "flex-row" >
2727 < GroupedInsetListCell label = { t ( "discoverFilters.language" ) } >
2828 < View className = "w-[100px]" >
2929 < Select
You can’t perform that action at this time.
0 commit comments