Skip to content

Commit

Permalink
fix: snap fav list in reverse order
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisParedes1 committed Dec 8, 2023
1 parent 72edbf8 commit 0a75d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/profile/fav-snaps-screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const FavoriteSnapScreen = () => {
<View>
<FocusAwareStatusBar />
<FlatList
data={snaps}
data={snaps.reverse()}
renderItem={renderItem}
keyExtractor={(item) => item.id}
onEndReachedThreshold={0.8}
Expand Down

0 comments on commit 0a75d13

Please sign in to comment.