From 0af23cb85b1f64172d62c3318674ef364c5762f9 Mon Sep 17 00:00:00 2001 From: Maria Shodunke Date: Thu, 17 Apr 2025 16:50:27 +0100 Subject: [PATCH] Update comment for max length of credential type --- _code-samples/issue-credentials/js/credential.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_code-samples/issue-credentials/js/credential.js b/_code-samples/issue-credentials/js/credential.js index 348f37c26c..b280d064ea 100644 --- a/_code-samples/issue-credentials/js/credential.js +++ b/_code-samples/issue-credentials/js/credential.js @@ -37,7 +37,7 @@ export function validateCredentialRequest({ subject, credential, uri, expiration * Checks if the specified credential type is one that this service issues. * XRPL credential types can be any binary data; this service issues * any credential that can be encoded from the following ASCII chars: - * alphanumeric characters, underscore, period, and dash. (min length 1, max 64) + * alphanumeric characters, underscore, period, and dash. (min length 1, max 128) * * You might want to further limit the credential types, depending on your * use case; for example, you might only issue one specific credential type.