mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 17:21:41 +10:00
chore: removed console.log
This commit is contained in:
@ -199,7 +199,11 @@ export const AddSignersFormPartial = ({
|
||||
});
|
||||
};
|
||||
|
||||
/* TODO: Add self-signer to db on blur */
|
||||
/*
|
||||
The self-signer is automatically saved on blur
|
||||
since the email input is focused after adding the self-signer.
|
||||
When the user clicks outside the input, the self-signer is saved in the db.
|
||||
*/
|
||||
const onAddSelfSigner = () => {
|
||||
if (emptySignerIndex !== -1) {
|
||||
setValue(`signers.${emptySignerIndex}.name`, user?.name ?? '');
|
||||
|
||||
@ -213,8 +213,6 @@ export const AddTemplatePlaceholderRecipientsFormPartial = ({
|
||||
try {
|
||||
const currentSigner = form.getValues(`signers.${index}`);
|
||||
|
||||
console.log('currentSigner', currentSigner);
|
||||
|
||||
if (!currentSigner.email) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user