add this in the CreatePage ```php protected function getCreateFormAction(): Action { return par

add this in the CreatePage

protected function getCreateFormAction(): Action
{
    return parent::getCreateFormAction()
        ->submit(null)
        ->requiresConfirmation()
        ->action(fn () => $this->create());
}
Was this page helpful?