diff --git a/app/docusign/ds_client.py b/app/docusign/ds_client.py index 8d1b9bf1..237c4585 100644 --- a/app/docusign/ds_client.py +++ b/app/docusign/ds_client.py @@ -103,7 +103,7 @@ def _jwt_auth(cls): except ApiException as err: body = err.body.decode('utf8') - # Grand explicit consent for the application + # Grant explicit consent for the application if "consent_required" in body: consent_scopes = " ".join(use_scopes) redirect_uri = DS_CONFIG["app_url"] + url_for("ds.ds_callback")