Mikael Finstad

Results 1499 comments of Mikael Finstad

Yeah I didn't implement support for that when I added berry support. Feel free to submit a PR if there's an easy way to add support for it.

recreated as #5307 because i dunno what happened here. Also included your TODO @lakesare

I think we can close this because the Google Photos plugin is no longer functional (and will never be https://github.com/transloadit/uppy/issues/5469#issuecomment-2658603884)

Hi. so you're getting this error but it still lists successfully? (I can see that you do have a list of folders there in your screenshot)

could you provide some more info? are you hosting companion yourself or using transloadit.com companion? are you using companion stand-alone? what is your config? could you provide a runnable example...

Not sure about mixing state (like assemblyResults) into an event hook. State seems to me like something that should instead be exposed in `useUppyState`. But as a way to hook...

maybe we should instead introduce some new state then, where it makes sense? something like `lastTransloaditResult`. I think having state stored inside the event hook could lead to unnecessary performance...

> If you want to subscribe to progress, you want to re-render too, that's kind of the point. Often when subcribing to events that happen very frequently, one wants to...

to illustrate the problem: if someone wants to `useUppyEvent('file-added', (file) => myListOfFiles.push(file))`, and the user adds 1000 files, then that will cause setState to be called 1000 times, which might...

yes, maybe the `file-added` event is not very useful in the context of react