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.
2 parents b46ed70 + 6edd7b0 commit 62b6cccCopy full SHA for 62b6ccc
packages/fiber/src/native/polyfills.ts
@@ -77,7 +77,8 @@ export function polyfills() {
77
const url = URL.createObjectURL(blob)
78
URL.revokeObjectURL(url)
79
} catch (_) {
80
- const BlobManager = require('react-native/Libraries/Blob/BlobManager.js')
+ const BlobManagerModule = require('react-native/Libraries/Blob/BlobManager.js')
81
+ const BlobManager = BlobManagerModule.default ?? BlobManagerModule
82
83
const createObjectURL = URL.createObjectURL
84
URL.createObjectURL = function (blob: Blob): string {
0 commit comments