()
| 132 | fetchAdRequest({ path: '/v1/a', params }); |
| 133 | |
| 134 | export const fetchCommentAd = async (): Promise<Ad | null> => { |
| 135 | return fetchAdByPlacement({ |
| 136 | placement: AdPlacement.PostComment, |
| 137 | }); |
| 138 | }; |
| 139 | |
| 140 | export const fetchDirectoryAd = async (): Promise<Ad | null> => { |
| 141 | return fetchAdByPlacement({ |
nothing calls this directly
no test coverage detected