Modal won't display from Infolist

I have an Infolist I'm rendering in a Livewire component. I have this action defined:

TextEntry::make('name')
  ->icon('heroicon-m-user')
  ->hintAction(
    Action::make('copyName')
      ->icon('heroicon-m-clipboard')
      ->requiresConfirmation()
      ->action(function ($record) {
        ray('hi');
      }),


Infolist renders fine, no errors in the console or PHP-side. I'm not sure what I'm doing wrong. I click the button and no modal appears, and the action isn't run. What am I missing here?
Solution
Add
<x-filament-actions::modals />
Was this page helpful?