Skip to content

Commit

Permalink
Merge pull request #361 from Aymanhki/ayman
Browse files Browse the repository at this point in the history
Bug fix for feed scrolling
  • Loading branch information
Aymanhki authored Mar 30, 2024
2 parents 0b700b6 + 1cfda7f commit cbede05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion epoch_frontend/src/modules/Feed.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default function Feed({
{

let finalOffset = reset ? 0 : (offset);
let finalFeedPosts = (reset || feedPosts.length > maxPosts) ? [] : feedPosts;
let finalFeedPosts = (reset) ? [] : feedPosts;

if (reset)
{
Expand Down

0 comments on commit cbede05

Please sign in to comment.