We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c9b6d6 commit c396791Copy full SHA for c396791
src/content-helper/common/providers/base-provider.tsx
@@ -143,7 +143,7 @@ export abstract class BaseProvider {
143
*
144
* @return {Promise<ContentHelperAPIResponse<any>>} The fetched data.
145
*/
146
- protected async fetch<T>( options: APIFetchOptions, id?: string ): Promise<T> {
+ protected async fetch<T>( options: APIFetchOptions<true>, id?: string ): Promise<T> {
147
const { abortController, abortId } = this.getOrCreateController( id );
148
options.signal = abortController.signal;
149
0 commit comments