Using ```php Tables\Actions\ActionGroup::make(actions: [ Tables\Actions\ViewAction::make('view') ->label('View') ->icon('heroicon-o-arrow-top-right-on-square') ->mountUsing(function (ComponentContainer $form, Instance $record) { return $form->fill($record->submission?->data)->disabled(); }) ->extraModalFooterActions([ \Filament\Actions\Action::make('delete') ->requiresConfirmation() ->action(function () { // ... }), ``` The modal is never fired for the actions, neither is action hit. The button spins and that's it. Is there a footer action class we should extend that's not in the docs?