Skip to content

Commit

Permalink
fix eslint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ansh committed Nov 8, 2023
1 parent b477b3b commit 713a24a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/screens/Feeds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export const FeedsScreen = withAuthRequired(
} else if (item.type === 'saved-feeds-loading') {
return (
<>
{Array.from(Array(item.numItems)).map((_, i) => (
{Array.from(Array(item.numItems)).map((_i, i) => (
<SavedFeedLoadingPlaceholder key={`placeholder-${i}`} />
))}
</>
Expand Down

0 comments on commit 713a24a

Please sign in to comment.