From a515f5815c1cea73ae70bff61da3484ad31e8ce6 Mon Sep 17 00:00:00 2001 From: Charlie Parker Date: Thu, 5 Sep 2024 12:52:51 -0400 Subject: [PATCH] bs4 fix update consumer error (#4480) --- app/controllers/insured/consumer_roles_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/insured/consumer_roles_controller.rb b/app/controllers/insured/consumer_roles_controller.rb index 8658464a18a..fac76721db5 100644 --- a/app/controllers/insured/consumer_roles_controller.rb +++ b/app/controllers/insured/consumer_roles_controller.rb @@ -7,7 +7,7 @@ class Insured::ConsumerRolesController < ApplicationController layout :resolve_layout - before_action :enable_bs4_layout, only: [:privacy, :search, :match, :edit, :ridp_agreement, :help_paying_coverage, :upload_ridp_document] if EnrollRegistry.feature_enabled?(:bs4_consumer_flow) + before_action :enable_bs4_layout, only: [:privacy, :search, :match, :edit, :update, :ridp_agreement, :help_paying_coverage, :upload_ridp_document] if EnrollRegistry.feature_enabled?(:bs4_consumer_flow) before_action :check_consumer_role, only: [:search, :match] before_action :find_consumer_role, only: [:edit, :update] before_action :individual_market_is_enabled?