Skip to content

Commit

Permalink
fix market kind label typo (#4379)
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
TristanB17 authored and charlienparker committed Sep 16, 2024
1 parent 131e931 commit 16e559c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<div class="row mb-3">
<div class="col-md-6">
<label class="required" for="inputPracticeArea"><%= l10n("marked_kind") %></label>
<label class="required" for="inputPracticeArea"><%= l10n("market_kind") %></label>
<%= f.select(:market_kind, options_for_select(BenefitSponsors::Organizations::BrokerAgencyProfile::MARKET_KINDS_OPTIONS.inject([]) { |options, (k, v)| options << [k, v] }, selected: f.object.try(:market_kind)), { prompt: "Select Market Kind" }, { class: 'form-control', required: true }) %>
<div class="invalid-feedback">
<%= l10n("marked_kind_error") %>
<%= l10n("market_kind_error") %>
</div>
</div>

Expand Down

0 comments on commit 16e559c

Please sign in to comment.