diff --git a/assets/stylesheets/wizard/wizard_custom.scss b/assets/stylesheets/wizard/wizard_custom.scss index ac973745..e5be8fd8 100644 --- a/assets/stylesheets/wizard/wizard_custom.scss +++ b/assets/stylesheets/wizard/wizard_custom.scss @@ -19,7 +19,7 @@ } .image-container { - margin: 30px 0; + margin: 50px 0; padding: 0 40px; display: flex; justify-content: space-between; diff --git a/lib/wizard_edits.rb b/lib/wizard_edits.rb index 96b934de..d4b2bcc9 100644 --- a/lib/wizard_edits.rb +++ b/lib/wizard_edits.rb @@ -71,9 +71,7 @@ end end def include_completed? - object.completed? && - (!object.respond_to?(:multiple_submissions) || !object.multiple_submissions) && - !scope.current_user.admin? + object.completed? && (!object.respond_to?(:multiple_submissions) || !object.multiple_submissions) end def include_start? @@ -91,14 +89,6 @@ end def include_required? object.respond_to?(:required) end - - def prompt_completion - object.prompt_completion - end - - def include_prompt_completion? - object.respond_to?(:prompt_completion) - end end ::WizardStepSerializer.class_eval do