diff --git a/src/routes/documents.pleading.new.tsx b/src/routes/documents.pleading.new.tsx index 7f5f8a0..de25605 100644 --- a/src/routes/documents.pleading.new.tsx +++ b/src/routes/documents.pleading.new.tsx @@ -400,7 +400,7 @@ function PleadingNewPage() { {includeSignature ? ( - !sigBlock.trim() && !sigImagePath ? ( + !sigBlock.trim() && !sigImagePath && !sigTyped.trim() ? (
No signature found on your profile yet. Add one in Settings → Profile.
@@ -409,19 +409,28 @@ function PleadingNewPage() { className="border rounded-md p-4 bg-white text-black" style={{ fontFamily: '"Bookman Old Style", Georgia, serif', fontSize: 12 }} > - {sigImagePath && sigImageDataUrl ? ( - Signature - ) : ( -
- )} -
_______________________________
-
-                    {sigBlock || (no block text)}
-                  
+
+ {sigImagePath && sigImageDataUrl ? ( + Signature + ) : sigTyped.trim() ? ( +
+ {sigTyped} +
+ ) : ( +
+ )} +
_______________________________
+
+                      {sigBlock || (no block text)}
+                    
+
) ) : null}