If I have a service provider with a boot method like: ``` public function boot() : void { CreateAction::configureUsing(function ($action) { return $action->slideOver(); }); ... ``` How do I override a specific instance that I don't want as slide over ? I've tried ->slideover(false) & ->modal() without success. Thanks