diff --git a/src/components/status.jsx b/src/components/status.jsx index a72182c..4eff323 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -407,26 +407,29 @@ function Status({ } // Check followedTags - const FollowedTagsParent = ({ children }) => ( -
-
- {' '} - {snapStates.statusFollowedTags[sKey].slice(0, 3).map((tag) => ( - - {tag} - - ))} + const FollowedTagsParent = useCallback( + ({ children }) => ( +
+
+ {' '} + {snapStates.statusFollowedTags[sKey].slice(0, 3).map((tag) => ( + + {tag} + + ))} +
+ {children}
- {children} -
+ ), + [sKey, instance, snapStates.statusFollowedTags[sKey]], ); const StatusParent = showFollowedTags && !!snapStates.statusFollowedTags[sKey]?.length