Skip to content

Commit c396791

Browse files
committed
Attempt to fix build error
1 parent 7c9b6d6 commit c396791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content-helper/common/providers/base-provider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export abstract class BaseProvider {
143143
*
144144
* @return {Promise<ContentHelperAPIResponse<any>>} The fetched data.
145145
*/
146-
protected async fetch<T>( options: APIFetchOptions, id?: string ): Promise<T> {
146+
protected async fetch<T>( options: APIFetchOptions<true>, id?: string ): Promise<T> {
147147
const { abortController, abortId } = this.getOrCreateController( id );
148148
options.signal = abortController.signal;
149149

0 commit comments

Comments
 (0)