Remove Create and Create another button from wizard form

I have a wizard in a form:
public static function form(Form $form): Form
    {
        return $form
            ->columns(1)
            ->schema([
                Wizard::make([ ... ])
            ])
}


but it still shows the "creat" and "create another" button.
how do i remove those?
Was this page helpful?