diff --git a/SetList.tsx b/SetList.tsx index dde6219..b69c750 100644 --- a/SetList.tsx +++ b/SetList.tsx @@ -148,6 +148,7 @@ export default function SetList() { style={{ flex: 1 }} renderItem={renderItem} onEndReached={next} + onEndReachedThreshold={0.99} refreshing={refreshing} keyExtractor={(set) => set.id?.toString()} onRefresh={() => { diff --git a/constants.ts b/constants.ts index a1c44b1..e3ad88a 100644 --- a/constants.ts +++ b/constants.ts @@ -3,4 +3,4 @@ export const PADDING = 10; export const ITEM_PADDING = 8; export const DARK_RIPPLE = "#444444"; export const LIGHT_RIPPLE = "#c2c2c2"; -export const LIMIT = 15; +export const LIMIT = 50;