Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ceceppa committed Dec 1, 2023
1 parent 988e1aa commit 6c3b812
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/lists/src/components/DynamicFlatList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ export const DynamicFlatList = React.forwardRef<
return __DEV__ ? (
<ListWrapper
rowsCount={dynamicList.rowsCount}
columnsCount={dynamicList.columnsCount}
>
columnsCount={dynamicList.columnsCount}>
<FlatList
data={data}
{...rest}
Expand All @@ -41,8 +40,7 @@ export const DynamicFlatList = React.forwardRef<
) : (
<ListWrapper
rowsCount={dynamicList.rowsCount}
columnsCount={dynamicList.columnsCount}
>
columnsCount={dynamicList.columnsCount}>
<FlatList data={data} {...rest} ref={forwardedRef} />
</ListWrapper>
);
Expand Down

0 comments on commit 6c3b812

Please sign in to comment.