Ryan Linton

Results 24 comments of Ryan Linton

@jakex7 I spun up a minimal repro here: https://github.com/ryanlntn/SVGMacOSRepro

@jakex7 I was able to get this compiling for macOS with new arch using [this patch](https://gist.github.com/ryanlntn/33f10e4b1dcb07948799a221e71c88ae). If that seems like a reasonable approach I'd be happy to open a PR.

I was able to resolve this by updating my polyfill like so: ``` polyfillGlobal( "fetch", () => (...args: Parameters) => fetch(args[0], { ...args[1], reactNative: { textStreaming: true } }), )...

I'm curious about this as well. I'm using `pagedContent: pagedArray('filteredContent', { infinite: 'unpaged' })` in case that is any different. I was able to implement this functionality like this: ```...