From f2aa2e2a85f7a3141519f459d1b55b6392032367 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 18:28:26 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routes/documents.pleading.new.tsx | 37 +++++++++++++++++---------- 1 file changed, 23 insertions(+), 14 deletions(-) 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}