# File lib/wicked/controller/concerns/render_redirect.rb, line 32
  def render_step(the_step, options = {}, params = {})
    if the_step.nil? || the_step.to_s == Wicked::FINISH_STEP
      redirect_to_finish_wizard options, params
    else
      render the_step, options
    end
  end