Hi, I have installed the spatie-laravel-media-library-plugin plugin in my project. I've done the setup following the instructions of the plugin. However, when trying to save a image in below input I get an error which I can't seem to figure out.
SpatieMediaLibraryFileUpload::make('featured_image')
->label('Featured Image')
->collection('pages')
->disk('public')
->image()
->imageEditor()
Error: array_keys(): Argument #1 ($array) must be of type array, Livewire\Features\SupportFileUploads\TemporaryUploadedFile given
It seems to be coming from vendor/filament/spatie-laravel-media-library-plugin/src/Forms/Components/SpatieMediaLibraryFileUpload.php:254
Does anyone had this before or maybe know whta could be the issue here? Thanks!