Skip to content

Commit

Permalink
fix(sign-submit): add email to confirmation message
Browse files Browse the repository at this point in the history
  • Loading branch information
billhimmelsbach committed Dec 5, 2024
1 parent ab37dc4 commit 81165a5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/pages/Filing/FilingApp/FilingSubmit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,9 @@ export function FilingSubmit(): JSX.Element {
filing.signatures[0].timestamp,
'fff',
)}. The confirmation number for this filing is
${filing.confirmation_id}.`}
${
filing.confirmation_id
}. This confirmation has been sent to ${user.email}.`}
</Paragraph>
<Paragraph className='m-notification_explanation'>
The beta platform is for testing purposes only and user-supplied
Expand Down Expand Up @@ -540,7 +542,9 @@ export function FilingSubmit(): JSX.Element {
filing.signatures[0].timestamp,
'fff',
)}. The confirmation number for this filing is
${filing.confirmation_id}.`}
${
filing.confirmation_id
}. This confirmation has been sent to ${user.email}.`}
</Paragraph>
<Paragraph className='m-notification_explanation'>
The beta platform is for testing purposes only and user-supplied
Expand Down

0 comments on commit 81165a5

Please sign in to comment.