()
| 3 | import { RequestKey } from '../lib/query'; |
| 4 | |
| 5 | export const useFeedPreviewMode = (): boolean => { |
| 6 | const { queryKey: feedQueryKey } = useContext(ActiveFeedContext); |
| 7 | |
| 8 | return feedQueryKey?.[0] === RequestKey.FeedPreview; |
| 9 | }; |
no outgoing calls
no test coverage detected