diff --git a/.changeset/twenty-timers-ring.md b/.changeset/twenty-timers-ring.md new file mode 100644 index 00000000000..ed733883493 --- /dev/null +++ b/.changeset/twenty-timers-ring.md @@ -0,0 +1,5 @@ +--- +"@wso2is/console": patch +--- + +Remove the trailing comma in deployment config file. diff --git a/apps/console/java/org.wso2.identity.apps.console.server.feature/resources/deployment.config.json.j2 b/apps/console/java/org.wso2.identity.apps.console.server.feature/resources/deployment.config.json.j2 index 4ae80612d6e..8fb718cd111 100644 --- a/apps/console/java/org.wso2.identity.apps.console.server.feature/resources/deployment.config.json.j2 +++ b/apps/console/java/org.wso2.identity.apps.console.server.feature/resources/deployment.config.json.j2 @@ -1880,7 +1880,7 @@ {% endif %} "passwordPolicyConfigs": { {% if identity_mgt.password_policy.max_password_allowed_length is defined %} - "maxPasswordAllowedLength": {{ identity_mgt.password_policy.max_password_allowed_length }}, + "maxPasswordAllowedLength": {{ identity_mgt.password_policy.max_password_allowed_length }} {% else %} "maxPasswordAllowedLength": 64 {% endif %}