Skip to content

Commit

Permalink
Fix handling of completed status (#127)
Browse files Browse the repository at this point in the history
fixes #124

Signed-off-by: Sean Sundberg <[email protected]>
  • Loading branch information
seansund authored Oct 6, 2023
1 parent a4c1b98 commit cc1d11a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ dist-ssr
*.njsproj
*.sln
*.sw?
.env
2 changes: 1 addition & 1 deletion src/views/KYC/KYCCaseDetail/KYCCaseDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const KYCCaseDetail: React.FunctionComponent<KYCCaseDetailProps> = (props
return (<KYCCasePending currentCase={selectedCase} returnUrl={props.basePath} />)
}

if (selectedCase.status === 'Closed') {
if (selectedCase.status === 'Closed' || selectedCase.status === 'Completed') {
return (<KYCCasePending title="Completed" currentCase={selectedCase} returnUrl={props.basePath} />)
}

Expand Down

0 comments on commit cc1d11a

Please sign in to comment.