(channelId: string, eventId: string)
| 14 | } |
| 15 | |
| 16 | export function forumThreadQueryKey(channelId: string, eventId: string) { |
| 17 | return ["forum-thread", channelId, eventId] as const; |
| 18 | } |
| 19 | |
| 20 | export function useForumPostsQuery(channel: Channel | null) { |
| 21 | const channelId = channel?.id ?? ""; |
no outgoing calls
no test coverage detected