diff --git a/apps/mobile/src/components/common/SwipeableItem.tsx b/apps/mobile/src/components/common/SwipeableItem.tsx index ac9963d25..e6f53d6ed 100644 --- a/apps/mobile/src/components/common/SwipeableItem.tsx +++ b/apps/mobile/src/components/common/SwipeableItem.tsx @@ -225,7 +225,7 @@ export const SwipeableItem: React.FC = ({ renderRightActions={rightActions?.length ? renderRightActions : undefined} overshootLeft={leftActions?.length ? leftActions?.length >= 1 : undefined} overshootRight={rightActions?.length ? rightActions?.length >= 1 : undefined} - overshootFriction={3} + overshootFriction={10} > {children} diff --git a/apps/mobile/src/modules/settings/routes/Lists.tsx b/apps/mobile/src/modules/settings/routes/Lists.tsx index 19b44b48b..a92badb43 100644 --- a/apps/mobile/src/modules/settings/routes/Lists.tsx +++ b/apps/mobile/src/modules/settings/routes/Lists.tsx @@ -57,8 +57,8 @@ export const ListsScreen = () => { - {data && ( - + + {data && ( { ItemSeparatorComponent={ItemSeparatorComponent} /> - - )} + )} + {isLoading && ( + + + + )} + - {isLoading && ( - - - - )} ) }