this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix post content not updating when changed

+3 -3
+3 -3
src/components/status.jsx
··· 137 137 ); 138 138 }, 139 139 (oldProps, newProps) => { 140 - const { content: oldContent } = oldProps; 141 - const { content: newContent } = newProps; 142 - return oldContent === newContent; 140 + const { post: oldPost } = oldProps; 141 + const { post: newPost } = newProps; 142 + return oldPost.content === newPost.content; 143 143 }, 144 144 ); 145 145