diff --git a/app/javascript/packages/document-capture/components/in-person-prepare-step.tsx b/app/javascript/packages/document-capture/components/in-person-prepare-step.tsx index 87c4e6d8a04..3061b6d57a8 100644 --- a/app/javascript/packages/document-capture/components/in-person-prepare-step.tsx +++ b/app/javascript/packages/document-capture/components/in-person-prepare-step.tsx @@ -14,8 +14,7 @@ import { useI18n } from '@18f/identity-react-i18n'; import { FormStepsButton } from '@18f/identity-form-steps'; import UploadContext from '../context/upload'; import BackButton from './back-button'; -// WILLFIX: Hiding this component until help links are finalized; see LG-6875 -// import InPersonTroubleshootingOptions from './in-person-troubleshooting-options'; +import InPersonTroubleshootingOptions from './in-person-troubleshooting-options'; function InPersonPrepareStep({ toPreviousStep, value }) { const { t } = useI18n(); @@ -92,11 +91,8 @@ function InPersonPrepareStep({ toPreviousStep, value }) { )} - - {/* - WILLFIX: Hiding this component until help links are finalized; see LG-6875 - */} + ); } diff --git a/app/views/idv/in_person/address.html.erb b/app/views/idv/in_person/address.html.erb index 869d2e68844..c1e5b3b875a 100644 --- a/app/views/idv/in_person/address.html.erb +++ b/app/views/idv/in_person/address.html.erb @@ -8,9 +8,13 @@

<%= t('in_person_proofing.body.address.info') %> - <%# WILLFIX: Hiding the link below until help links are finalized; see LG-6875 %> - <%# i18n-tasks-use t('in_person_proofing.body.address.learn_more') %> - <%# new_window_link_to(t('in_person_proofing.body.address.learn_more'), MarketingSite.security_and_privacy_practices_url) %> + <%= new_window_link_to( + t('in_person_proofing.body.address.learn_more'), + MarketingSite.help_center_article_url( + category: 'verify-your-identity', + article: 'how-to-verify-in-person', + ), + ) %>

<%= simple_form_for( diff --git a/app/views/idv/in_person/ready_to_verify/show.html.erb b/app/views/idv/in_person/ready_to_verify/show.html.erb index 6e93663230c..d3526156c13 100644 --- a/app/views/idv/in_person/ready_to_verify/show.html.erb +++ b/app/views/idv/in_person/ready_to_verify/show.html.erb @@ -59,9 +59,8 @@ <% end %> <% end %>

- <%# WILLFIX: Hiding this text and link until help links are finalized; see LG-6875 %> - <%# t('in_person_proofing.body.barcode.items_to_bring_questions') %> - <%# new_window_link_to( + <%= t('in_person_proofing.body.barcode.items_to_bring_questions') %> + <%= new_window_link_to( t('in_person_proofing.body.barcode.learn_more'), MarketingSite.help_center_article_url( category: 'verify-your-identity', diff --git a/app/views/user_mailer/in_person_ready_to_verify.html.erb b/app/views/user_mailer/in_person_ready_to_verify.html.erb index f12c97a82b0..c6f4a1f68fe 100644 --- a/app/views/user_mailer/in_person_ready_to_verify.html.erb +++ b/app/views/user_mailer/in_person_ready_to_verify.html.erb @@ -61,10 +61,8 @@ <% end %>

- <%# WILLFIX: Hiding this text and link until help links are finalized; see LG-6875 %> - <%# i18n-tasks-use t('in_person_proofing.body.barcode.items_to_bring_questions') %> - <%# t('in_person_proofing.body.barcode.items_to_bring_questions') %> - <%# link_to( + <%= t('in_person_proofing.body.barcode.items_to_bring_questions') %> + <%= link_to( t('in_person_proofing.body.barcode.learn_more'), MarketingSite.help_center_article_url( category: 'verify-your-identity',