diff --git a/app/javascript/flavours/glitch/features/firehose/index.jsx b/app/javascript/flavours/glitch/features/firehose/index.jsx index 9db45a0e4..6510ee7a7 100644 --- a/app/javascript/flavours/glitch/features/firehose/index.jsx +++ b/app/javascript/flavours/glitch/features/firehose/index.jsx @@ -102,7 +102,7 @@ const Firehose = ({ feedType, multiColumn }) => { break; } }, - [dispatch, onlyMedia, feedType], + [dispatch, onlyMedia, allowLocalOnly, feedType], ); const handleHeaderClick = useCallback(() => columnRef.current?.scrollTop(), []); @@ -132,7 +132,7 @@ const Firehose = ({ feedType, multiColumn }) => { } return () => disconnect?.(); - }, [dispatch, signedIn, feedType, onlyMedia]); + }, [dispatch, signedIn, feedType, onlyMedia, allowLocalOnly]); const prependBanner = feedType === 'community' ? ( @@ -193,7 +193,7 @@ const Firehose = ({ feedType, multiColumn }) => {