@makeswift/runtime 0.11.12 → 0.11.14

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.
@@ -1160,7 +1160,7 @@ function getShapeTranslatableData(definition2, data) {
1160
1160
  function mergeShapeTranslatedData(definition2, data, translatedData, context) {
1161
1161
  return Object.fromEntries(Object.entries(definition2.config.type).map(([key, definition22]) => [
1162
1162
  key,
1163
- mergeTranslatedData(definition22, data.key, translatedData[key], context)
1163
+ mergeTranslatedData(definition22, data[key], translatedData[key], context)
1164
1164
  ]));
1165
1165
  }
1166
1166
  const TextAreaControlType = "makeswift::controls::text-area";