chore: typo

This commit is contained in:
David Nguyen
2024-03-17 14:47:06 +08:00
parent 364b9e03e1
commit dc6aba58e6
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ export const DocumentAuthProvider = ({
return; return;
} }
// Run callback with precalculated auth options if avaliable. // Run callback with precalculated auth options if available.
if (preCalculatedActionAuthOptions) { if (preCalculatedActionAuthOptions) {
setDocumentAuthDialogPayload(null); setDocumentAuthDialogPayload(null);
await options.onReauthFormSubmit(preCalculatedActionAuthOptions); await options.onReauthFormSubmit(preCalculatedActionAuthOptions);

View File

@ -30,7 +30,7 @@ export type SignatureFieldProps = {
/** /**
* The function required to be executed to insert the field. * The function required to be executed to insert the field.
* *
* The auth values will be passed in if avaliable. * The auth values will be passed in if available.
*/ */
onSign?: (documentAuthValue?: TRecipientActionAuth) => Promise<void> | void; onSign?: (documentAuthValue?: TRecipientActionAuth) => Promise<void> | void;
onRemove?: () => Promise<void> | void; onRemove?: () => Promise<void> | void;