diff --git a/app/views/static_pages/oauth_welcome.html.erb b/app/views/static_pages/oauth_welcome.html.erb index 3c6d02b..6ed4a87 100644 --- a/app/views/static_pages/oauth_welcome.html.erb +++ b/app/views/static_pages/oauth_welcome.html.erb @@ -1,8 +1,8 @@ <% service_name = @program&.name || "the application" %> <% scenario_class = @program&.onboarding_scenario_class %> <% scenario = scenario_class&.new(nil) %> -<% if scenario&.background_url %> - <% content_for(:body_style) { "background-image: url('#{scenario.background_url}'); background-size: cover; background-position: center;" } %> +<% if scenario&.background_path %> + <% content_for(:body_style) { "background-image: url('#{scenario.background_path}'); background-size: cover; background-position: center;" } %> <% end %> <%= render Components::AuthWelcome.new( headline: "Continue to #{service_name}",