Skip to content

Commit

Permalink
make sure displayed for resubmitted as well as submitted
Browse files Browse the repository at this point in the history
  • Loading branch information
pearl-truss committed Apr 30, 2024
1 parent 02f1144 commit 735f8aa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ export const SubmissionTypeSummarySectionV2 = ({
const programNames = statePrograms
.filter((p) => contractFormData?.programIDs.includes(p.id))
.map((p) => p.name)
const isSubmitted = contract.status === 'SUBMITTED'

const isSubmitted =
contract.status === 'SUBMITTED' || contract.status === 'RESUBMITTED'
return (
<SectionCard
id="submissionTypeSection"
Expand Down

0 comments on commit 735f8aa

Please sign in to comment.