Disable "create another" on form (non modal)

I only want to let users create a single item for a model, but in the form it shows "Create and create another". I know you can disable this for a modal Action, but how do you disable it for a regular form?
Solution
if you are using pages
//CreateXX.php
protected static bool $canCreateAnother = false;

if you are using modals
Actions\CreateAction::make()
    ->createAnother(false)
Was this page helpful?