You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
416 B

import { enterSingleRelayExplicitBrowse, leaveSingleRelayExplicitBrowse } from '@/lib/read-only-relay-personal'
import { useEffect } from 'react'
/** Relay detail feed: connect to the page relay even if it is not on the viewer's personal lists. */
export function useRelayPageFeedPolicy(): void {
useEffect(() => {
enterSingleRelayExplicitBrowse()
return () => leaveSingleRelayExplicitBrowse()
}, [])
}