Skip to content

Commit

Permalink
Merge branch 'develop' into feat/DEVSU-2433-add-graphkb-user-checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
bnguyen-bcgsc authored Aug 15, 2024
2 parents 29629bc + 4e036e2 commit dc04a68
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/components/SignatureCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,11 @@ const SignatureCard = ({
return null;
}, [signatures, type, isPrint]);

if (isPrint) {
if (isPrint && !userSignature) {
return null
}

if (isPrint && userSignature) {
return (
<span className="signatures-print__group">
<div className="signatures-print__value">
Expand Down

0 comments on commit dc04a68

Please sign in to comment.