| 3 | import { useSession } from "next-auth/react"; |
| 4 | |
| 5 | interface RssSubscriptionWithCollectionName extends RssSubscription { |
| 6 | collection: { |
| 7 | name: string; |
| 8 | }; |
| 9 | } |
| 10 | |
| 11 | const useRssSubscriptions = () => { |
| 12 | const { status } = useSession(); |
nothing calls this directly
no outgoing calls
no test coverage detected