Skip to content

Commit

Permalink
Fixed Start Date Bug on Glue
Browse files Browse the repository at this point in the history
  • Loading branch information
jayreddy519 committed May 29, 2024
1 parent afbb56b commit 22803d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/enrollment_action/dependent_add.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def publish
else
member_date_map = {}
policy_to_change.enrollees.each do |en|
member_date_map[en.m_id] = en.coverage_start
member_date_map[en.m_id] = en.coverage_start if en.active?
end
change_publish_helper.set_policy_id(policy_to_change.eg_id)
change_publish_helper.set_member_starts(member_date_map)
Expand Down

0 comments on commit 22803d1

Please sign in to comment.