keycloakify 10.0.0-rc.79 → 10.0.0-rc.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/440.index.js CHANGED
@@ -115,7 +115,7 @@ function generateMessageProperties(params) {
115
115
  continue;
116
116
  }
117
117
  for (const [key, value] of Object.entries(keyValueMap_i)) {
118
- if (keyValueMap[key] !== undefined) {
118
+ if (key !== "termsText" && keyValueMap[key] !== undefined) {
119
119
  console.warn([
120
120
  "WARNING: The following key is defined multiple times:",
121
121
  "\n",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "10.0.0-rc.79",
3
+ "version": "10.0.0-rc.80",
4
4
  "description": "Create Keycloak themes using React",
5
5
  "repository": {
6
6
  "type": "git",
@@ -128,7 +128,7 @@ export function generateMessageProperties(params: {
128
128
  }
129
129
 
130
130
  for (const [key, value] of Object.entries(keyValueMap_i)) {
131
- if (keyValueMap[key] !== undefined) {
131
+ if (key !== "termsText" && keyValueMap[key] !== undefined) {
132
132
  console.warn(
133
133
  [
134
134
  "WARNING: The following key is defined multiple times:",