diff --git a/components/ClientEmailSection.vue b/components/ClientEmailSection.vue index 0060c6d..6c28485 100644 --- a/components/ClientEmailSection.vue +++ b/components/ClientEmailSection.vue @@ -98,8 +98,8 @@
- - + +
@@ -393,6 +393,15 @@ density="compact" rows="2" /> + + Save Signature +
@@ -1032,6 +1041,11 @@ const formatRelativeTime = (timestamp: string) => { year: 'numeric' }); }; + +const saveSignature = () => { + localStorage.setItem('emailSignature', JSON.stringify(signatureConfig.value)); + toast.success('Signature saved successfully'); +};