Skip to content

Commit

Permalink
[FE] dev -> release (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
gunoc authored Mar 13, 2024
2 parents 730bdd1 + 2f7e455 commit e4ed51f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fe/src/components/feedMain/FeedMainList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ export const FeedMainList = () => {
},
});

if (!feeds) return null;

return (
<Wrapper>
{feeds?.map((feed: MainFeed, index: number) => {
{feeds.map((feed: MainFeed, index: number) => {
const isLastItem = index === feeds?.length - 2;

return (
Expand Down

0 comments on commit e4ed51f

Please sign in to comment.