@luscii-healthtech/web-ui 15.0.3 → 15.0.4

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.
@@ -2396,7 +2396,7 @@ const ConfirmationDialogMessage = (props) => {
2396
2396
  if (typeof message === "string") {
2397
2397
  return React__namespace.default.createElement(Text, { text: message, containsDangerousHtml: true });
2398
2398
  }
2399
- return React__namespace.default.createElement("div", { className: "ui-space-y-2" }, message.map((messageLine) => React__namespace.default.createElement(Text, { text: messageLine, containsDangerousHtml: true })));
2399
+ return React__namespace.default.createElement("div", { className: "ui-space-y-2" }, message.map((messageLine) => React__namespace.default.createElement(Text, { key: messageLine, containsDangerousHtml: true }, messageLine)));
2400
2400
  };
2401
2401
 
2402
2402
  const ConfirmationDialog = (_a) => {