diff --git a/apps/web/components/editor/editable-field.tsx b/apps/web/components/editor/editable-field.tsx
index 0135edfbd..c4966a0f0 100644
--- a/apps/web/components/editor/editable-field.tsx
+++ b/apps/web/components/editor/editable-field.tsx
@@ -53,18 +53,15 @@ export default function EditableField(props: FieldPropsType) {
e.stopPropagation();
}}
>
+ {/* width: 192 height 96 */}
-
-
-
- {/* width: 192 height 96 */}
{field.type}
{field.type === "SIGNATURE" ? (
diff --git a/apps/web/components/editor/pdf-editor.tsx b/apps/web/components/editor/pdf-editor.tsx
index 00cd892e4..da2f3f9ff 100644
--- a/apps/web/components/editor/pdf-editor.tsx
+++ b/apps/web/components/editor/pdf-editor.tsx
@@ -48,6 +48,9 @@ export default function PDFEditor(props: any) {
<>
diff --git a/apps/web/components/editor/signable-field.tsx b/apps/web/components/editor/signable-field.tsx
index f21a36fd7..cde6b8eb3 100644
--- a/apps/web/components/editor/signable-field.tsx
+++ b/apps/web/components/editor/signable-field.tsx
@@ -43,26 +43,26 @@ export default function SignableField(props: FieldPropsType) {
if (!field?.signature) props.onClick(props.field);
}}
ref={nodeRef}
- className="cursor-pointer opacity-80 p-2 m-auto w-auto flex-row-reverse text-lg font-bold text-center absolute top-0 left-0 select-none hover:brightness-50"
+ className="cursor-pointer opacity-80 m-auto w-48 h-16 flex-row-reverse text-lg font-bold text-center absolute top-0 left-0 select-none hover:brightness-50"
style={{
background: stc(props.field.Recipient.email),
}}
>
-
+
{field.type === "SIGNATURE" ? "SIGN HERE" : ""}
- {field?.signature?.type === "type"
- ? field?.signature.typedSignature
- : ""}
+ {field?.signature?.type === "type" ? (
+
{field?.signature.typedSignature}
+ ) : (
+ ""
+ )}
+
{field?.signature?.type === "draw" ? (
-

+

) : (
""
)}
diff --git a/apps/web/pages/documents/[id]/recipients.tsx b/apps/web/pages/documents/[id]/recipients.tsx
index 40364c7da..8a833e436 100644
--- a/apps/web/pages/documents/[id]/recipients.tsx
+++ b/apps/web/pages/documents/[id]/recipients.tsx
@@ -117,7 +117,6 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
color="primary"
icon={PaperAirplaneIcon}
onClick={() => {
- setLoading(true);
setOpen(true);
}}
disabled={
@@ -361,12 +360,7 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
-
-