qt-ui-kit 1.0.66 → 1.0.67

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/dist/index.mjs CHANGED
@@ -16471,7 +16471,6 @@ function EventCard({
16471
16471
  }
16472
16472
 
16473
16473
  // src/components/organisms/message_body/email_body.tsx
16474
- import DOMPurify from "dompurify";
16475
16474
  import ReactMarkdown from "react-markdown";
16476
16475
  import rehypeRaw from "rehype-raw";
16477
16476
  import { jsx as jsx33, jsxs as jsxs23 } from "react/jsx-runtime";
@@ -16485,7 +16484,7 @@ function EmailBody({
16485
16484
  attachments,
16486
16485
  body
16487
16486
  }) {
16488
- const clean = DOMPurify.sanitize(body ?? "");
16487
+ body = "Alex \u2014 this is getting flagged higher up. Please send me a status update on Project Alpha ASAP so I can respond accordingly.\n\n\u2014 Greg";
16489
16488
  return /* @__PURE__ */ jsxs23("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl overflow-auto", children: [
16490
16489
  /* @__PURE__ */ jsxs23("div", { className: "flex flex-col gap-0.5", children: [
16491
16490
  /* @__PURE__ */ jsx33(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
@@ -16500,7 +16499,7 @@ function EmailBody({
16500
16499
  /* @__PURE__ */ jsx33("div", { className: "body-medium prose break-all", children: body && /* @__PURE__ */ jsx33(
16501
16500
  ReactMarkdown,
16502
16501
  {
16503
- children: clean,
16502
+ children: body,
16504
16503
  rehypePlugins: [rehypeRaw],
16505
16504
  components: {
16506
16505
  img: ({ node, ...props }) => /* @__PURE__ */ jsx33("img", { style: { maxWidth: "100%" }, ...props })