How to fully disable export action modal?

I have this export header action on my table:
ExportAction::make()
  ->hidden(fn (Component $livewire) => $livewire->getTableRecords()->isNotEmpty() ? false : true)
  ->label('Export CSV')
  ->columnMapping(false)
  ->color('primary')
  ->icon('heroicon-o-arrow-up-tray')
  ->exporter(GroupOrderManagementExporter::class)
  ->formats([
      ExportFormat::Csv,
  ]),

Where I have set columnMapping(false). But I still get the modal shown in the first screenshot. And when I add ->requiresConfirmation(false), I get the same confirmation modal, just slightly bigger, as shown in the second screenshot.

How can we disable this modal entirely? I would like to just click the action, and start the export.
image.png
image.png
Was this page helpful?