Skip to content

Commit

Permalink
fix(url): add hyphen to match production assets
Browse files Browse the repository at this point in the history
  • Loading branch information
thekaveman committed Aug 26, 2024
1 parent abed669 commit 69175d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benefits/core/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def to_url(self, agency):
path("", views.index, name=routes.name(routes.INDEX)),
path("help", views.help, name=routes.name(routes.HELP)),
path("<agency:agency>", views.agency_index, name=routes.name(routes.AGENCY_INDEX)),
path("<agency:agency>/agencycard", views.agency_card, name=routes.name(routes.AGENCY_CARD)),
path("<agency:agency>/agency-card", views.agency_card, name=routes.name(routes.AGENCY_CARD)),
path("<agency:agency>/eligibility", views.agency_eligibility_index, name=routes.name(routes.AGENCY_ELIGIBILITY_INDEX)),
path("<agency:agency>/publickey", views.agency_public_key, name=routes.name(routes.AGENCY_PUBLIC_KEY)),
path("logged_out", views.logged_out, name=routes.name(routes.LOGGED_OUT)),
Expand Down

0 comments on commit 69175d6

Please sign in to comment.