Merge pull request #335 from adithyaakrishna/chore/remove-cl

chore: removed unnecessary `console.log`
This commit is contained in:
Lucas Smith
2023-08-31 13:09:03 +10:00
committed by GitHub
2 changed files with 0 additions and 8 deletions

View File

@ -87,9 +87,6 @@ export const SigningForm = ({ document, recipient, fields }: SigningFormProps) =
className="h-44 w-full"
defaultValue={signature ?? undefined}
onChange={(value) => {
console.log({
signpadValue: value,
});
setSignature(value);
}}
/>

View File

@ -63,11 +63,6 @@ export const SignatureField = ({ field, recipient }: SignatureFieldProps) => {
const onSign = async (source: 'local' | 'provider' = 'provider') => {
try {
console.log({
providedSignature,
localSignature,
});
if (!providedSignature && !localSignature) {
setShowSignatureModal(true);
return;