Skip to content

Commit

Permalink
fix: Application status is already change to HANDLING when showing no…
Browse files Browse the repository at this point in the history
…tification
  • Loading branch information
JanneJuhola committed Dec 13, 2024
1 parent 3aa9281 commit 9776693
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@ const PageContent: React.FC = () => {
/>
);
}

// Different confirmation messages for sending update (HANDLING) and sending new application
if (isSubmittedApplication) {
return (
<>
{application.status === APPLICATION_STATUSES.INFO_REQUIRED ? (
{application.status === APPLICATION_STATUSES.HANDLING ? (
<NotificationView
applicationId={application.id}
title={t('common:notifications.applicationReSubmitted.label')}
Expand Down

0 comments on commit 9776693

Please sign in to comment.