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

Hl 1551 #3645

Merged
merged 3 commits into from
Dec 11, 2024
Merged

Hl 1551 #3645

Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion frontend/benefit/handler/public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,7 @@
},
"submitted": {
"title": "Päätösehdotus on lähetetty Ahjoon",
"text": "Viimeistele päätöskäsittely Ahjossa.",
"text": "Päätös hyväksytään Ahjossa.",
"altText": "Hakemusnumero"
}
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/benefit/handler/public/locales/fi/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,7 @@
},
"submitted": {
"title": "Päätösehdotus on lähetetty Ahjoon",
"text": "Viimeistele päätöskäsittely Ahjossa.",
"text": "Päätös hyväksytään Ahjossa.",
"altText": "Hakemusnumero"
}
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/benefit/handler/public/locales/sv/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,7 @@
},
"submitted": {
"title": "Päätösehdotus on lähetetty Ahjoon",
"text": "Viimeistele päätöskäsittely Ahjossa.",
"text": "Päätös hyväksytään Ahjossa.",
"altText": "Hakemusnumero"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import AppContext from 'benefit/handler/context/AppContext';
import { useDetermineAhjoMode } from 'benefit/handler/hooks/useDetermineAhjoMode';
import { APPLICATION_STATUSES } from 'benefit-shared/constants';
import { Application } from 'benefit-shared/types/application';
import { Button, IconLinkExternal } from 'hds-react';
import { Button } from 'hds-react';
import Link from 'next/link';
import { useRouter } from 'next/router';
import { useTranslation } from 'next-i18next';
Expand Down Expand Up @@ -74,6 +74,8 @@ const NotificationView: React.FC<Props> = ({ data }) => {
<Link href={`${ROUTES.APPLICATION}?id=${data?.id}`}>
{data?.applicationNumber}
</Link>
{', '}
{data?.ahjoCaseId}
</p>
)}
{isNewAhjoMode
Expand All @@ -89,14 +91,14 @@ const NotificationView: React.FC<Props> = ({ data }) => {
<Button theme="coat" onClick={handleGoHome}>
{t('common:utility.home')}
</Button>
<Button
{/* <Button
variant="secondary"
theme="coat"
onClick={handleStartAhjo}
iconRight={<IconLinkExternal />}
>
{t(`${translationsBase}.ahjoButton.linkLabel`)}
</Button>
</Button> */}
</$ActionsContainer>
</$GridCell>
)}
Expand Down
Loading