Possible bug with Builder field and FileUpload

I've been chasing a bug I thought was in my project and I just want to confirm that I'm not losing my mind 😅

Here's a simplified example:
    Builder::make('test')->blocks([
        Block::make('file')->schema([
            FileUpload::make('file'),
        ])
    ]),


  1. Start on an empty form
  2. Add a block, leave it empty
  3. Delete the block
  4. See the following error in the Browser console:
module.esm.js:23899 Uncaught (in promise) TypeError: Cannot convert undefined or null to object
...
Was this page helpful?