Skip to content

Commit

Permalink
fix: hide signature for duplicate record (#7773)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zangetsu101 authored Oct 17, 2024
1 parent be66d58 commit a953b65
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1936,7 +1936,11 @@ class ReviewSectionComp extends React.Component<FullProps, State> {
</Accordion>
)}

{!(isCorrection(declaration) || viewRecord) && (
{!(
isCorrection(declaration) ||
viewRecord ||
isDuplicate
) && (
<FormFieldGenerator
id={reviewSection.id}
key={reviewSection.id}
Expand Down

0 comments on commit a953b65

Please sign in to comment.