Skip to content

Commit

Permalink
fix confirmation step
Browse files Browse the repository at this point in the history
  • Loading branch information
eike-hass committed Jun 21, 2024
1 parent 7a1b115 commit 644b21e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/src/pages/Company/Confirmation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const Confirmation: React.FC = () => {
theme === 'company' &&
<p>{t("pages.general.confirmation.proudOwnerOfCompany")}</p>
}
<Link to={nextStep.replace(':companyId', companyId)}>
<Link to={nextStep}>
<Button>
{
theme === 'company' ? t("actions.continue") : t("pages.general.confirmation.returnToCompany")
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/Government/Confirmation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const Confirmation: React.FC = () => {
theme === 'company' &&
<p>{t("pages.general.confirmation.proudOwnerOfCompany")}</p>
}
<Link to={nextStep.replace(':companyId', companyId)}>
<Link to={nextStep}>
<Button>
{
theme === 'company' ? t("actions.continue") : t("pages.general.confirmation.returnToCompany")
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/Insurance/Confirmation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const Confirmation: React.FC = () => {
theme === 'company' &&
<p>{t("pages.general.confirmation.proudOwnerOfCompany")}</p>
}
<Link to={nextStep.replace(':companyId', companyId)}>
<Link to={nextStep}>
<Button>
{
theme === 'company' ? t("actions.continue") : t("pages.general.confirmation.returnToCompany")
Expand Down

0 comments on commit 644b21e

Please sign in to comment.