Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

B 22305 int milmove error message has incorrect url for technical helpdesk #14763

Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
1f0d1a2
fixed error modal mailto Link
joeydoyecaci Feb 4, 2025
d3dc95a
Merge branch 'main' into B-22305-MAIN-Milmove-Error-message-has-incor…
joeydoyecaci Feb 5, 2025
b54a72a
'B-22305-MAIN-Milmove-Error-message-has-incorrect-URL-for-Technical-H…
joeydoyecaci Feb 5, 2025
516a39a
Merge branch 'integrationTesting' into B-22305-INT-Milmove-Error-mess…
joeydoyecaci Feb 5, 2025
1c5f148
Merge branch 'main' into B-20536-MAIN
paulstonebraker Feb 5, 2025
3a48b3e
Merge branch 'integrationTesting' into B-22305-INT-Milmove-Error-mess…
joeydoyecaci Feb 6, 2025
0e45f95
Merge branch 'main' into B-20536-MAIN
pambecker Feb 6, 2025
c51a937
Merge branch 'main' into B-22305-MAIN-Milmove-Error-message-has-incor…
joeydoyecaci Feb 6, 2025
e79c3f6
Merge pull request #14535 from transcom/B-20536-MAIN
pambecker Feb 6, 2025
5e9a088
Merge branch 'main' into B-22305-MAIN-Milmove-Error-message-has-incor…
joeydoyecaci Feb 7, 2025
d916261
Merge branch 'integrationTesting' into B-22305-INT-Milmove-Error-mess…
joeydoyecaci Feb 7, 2025
72dd20b
Fixed 'mailto:' email link
joeydoyecaci Feb 7, 2025
896e66e
Merge branch 'B-22305-MAIN-Milmove-Error-message-has-incorrect-URL-fo…
joeydoyecaci Feb 7, 2025
5d7a679
Merge branch 'integrationTesting' into B-22305-INT-Milmove-Error-mess…
joeydoyecaci Feb 7, 2025
9fd3372
Merge branch 'integrationTesting' into B-22305-INT-Milmove-Error-mess…
joeydoyecaci Feb 10, 2025
b9248d4
Merge branch 'integrationTesting' into B-22305-INT-Milmove-Error-mess…
joeydoyecaci Feb 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/shared/ErrorModal/ErrorModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ export const ErrorModal = ({ closeModal, errorMessage, displayHelpDeskLink = tru
<ModalClose handleClick={closeModal} />
<SystemError>
{errorMessage}
{displayHelpDeskLink && (
<a href="mailto:usarmy.scott.sddc.mbx.G6-SRC-M\[email protected]">Technical Help Desk</a>
)}
{displayHelpDeskLink && <a href="mailto:[email protected]">Technical Help Desk</a>}
</SystemError>
<ModalActions>
<Button secondary type="button" onClick={closeModal} className={styles.Button}>
Expand Down