Skip to content
Snippets Groups Projects
Commit 4d1c6da2 authored by xaralis's avatar xaralis
Browse files

fix: do not reset listing window when item list changes

parent b1580d75
No related branches found
No related tags found
No related merge requests found
...@@ -338,4 +338,4 @@ const Post = ({ ...@@ -338,4 +338,4 @@ const Post = ({
); );
}; };
export default Post; export default React.memo(Post);
import React, { useCallback, useEffect, useMemo, useState } from "react"; import React, { useCallback, useMemo, useState } from "react";
import classNames from "classnames"; import classNames from "classnames";
import Post from "./Post"; import Post from "./Post";
...@@ -50,11 +50,6 @@ const PostList = ({ ...@@ -50,11 +50,6 @@ const PostList = ({
onRejectProcedureProposalByChairman onRejectProcedureProposalByChairman
); );
// Reset window when items change (possibly due to filtering).
useEffect(() => {
setWindow(windowSize);
}, [items, setWindow]);
const onPostSeen = useCallback( const onPostSeen = useCallback(
(post) => () => { (post) => () => {
if (!post.seen) { if (!post.seen) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment