Method Filament\Actions\ExportAction::table does not exist.

Just upgraded to Filament 3.2 to get this Export working, but no dice so far. I migrated teh tables, and I can see the export table. I'm not sure why the error though.

This is my code;

return $table
  ->headerActions([
                ExportAction::make()
->exporter(UserExporter::class)
                    ->formats([
                      ExportFormat::Csv,
                    ]),
            ])
Solution
ugh, wrong import
Was this page helpful?