Skip to content

Commit d89f19b

Browse files
authored
Merge pull request #3841 from Parsely/try/fix-develop-build-error
2 parents 0a3a27e + bbb65ec commit d89f19b

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
@@ -148,7 +148,7 @@ export abstract class BaseProvider {
148148
options.signal = abortController.signal;
149149

150150
try {
151-
const response = await apiFetch<ContentHelperAPIResponse<T>>( options );
151+
const response = await apiFetch<ContentHelperAPIResponse<T>>( options as APIFetchOptions<true> );
152152

153153
// Validate API side errors.
154154
if ( response.error ) {

0 commit comments

Comments
 (0)