->fileAttachmentsDisk(), it effectively saves the file as soon as I drag the image onto the editor pane. Once it's been saved, it shows up immediately in the editor pane, exactly as you'd expect, on the local disk storage, etc.->fileAttachmentsDisk('s3') on the MarkdownEditor component - which works perfectly fine throughout the rest of the Admin Panel in the form of various SpatieMediaLibraryFileUpload::disk('s3')->... elements - dragging an image on the pane does "nothing". I say "nothing" in quotes because I can see traffic in DevTools and it's doing something but no file ever actually ends up in S3, and no file shows up in the editor panel, confirming that something probably went wrong but no exceptions are being thrown.aws/aws-sdk-php package is installed and is up to datelocal disk configured on my machineconfig/filesystems.php file, I set 'throw' => true on the S3 disk so I could see the actual upload exceptionLeague \ Flysystem \ UnableToWriteFile but the error message went into more detail about the problem which helped: 'options' => ['ACL' => null] to my S3 disk in filesystems.php but it seemed like it was being ignored because the value was null. Then I tried 'options' => ['ACL' => ''] and everything started working. Files could be dropped into the MarkdownEditor and were immediately being displayed!