double tooltips, workaround not working.

I have an action and it is showing double tooltips (See screenshot).

I successfully removed the browser default tooltip by adding the ->label('') modifier.

However, after doing this, the confirmation modal no longer has any content and is just confirm/cancel buttons (see other screenshot).

    public function deleteAction(): Action
    {
        return Action::make('delete')
            ->label('')
            ->size('lg')
            ->iconButton()
            ->icon('heroicon-o-trash')
            ->tooltip('Delete statement')
            ->requiresConfirmation()
            ->action(fn (array $arguments) => $this->deleteStatement($arguments))
         
}
image.png
image.png
Was this page helpful?