diff --git a/src/frontend/src/components/SanitizedDiv/index.tsx b/src/frontend/src/components/SanitizedHTMLWrapper/index.tsx similarity index 100% rename from src/frontend/src/components/SanitizedDiv/index.tsx rename to src/frontend/src/components/SanitizedHTMLWrapper/index.tsx diff --git a/src/frontend/src/modals/chatModal/chatMessage/index.tsx b/src/frontend/src/modals/chatModal/chatMessage/index.tsx index 3a9749b72..8889e40a3 100644 --- a/src/frontend/src/modals/chatModal/chatMessage/index.tsx +++ b/src/frontend/src/modals/chatModal/chatMessage/index.tsx @@ -7,7 +7,7 @@ import remarkGfm from "remark-gfm"; import remarkMath from "remark-math"; import AiIcon from "../../../assets/Gooey Ring-5s-271px.svg"; import AiIconStill from "../../../assets/froze-flow.png"; -import SanitizedHTMLWrapper from "../../../components/SanitizedDiv"; +import SanitizedHTMLWrapper from "../../../components/SanitizedHTMLWrapper"; import { ChatMessageType } from "../../../types/chat"; import { classNames } from "../../../utils"; import { CodeBlock } from "../../formModal/chatMessage/codeBlock"; diff --git a/src/frontend/src/modals/formModal/chatMessage/index.tsx b/src/frontend/src/modals/formModal/chatMessage/index.tsx index 66981be5e..e12febc07 100644 --- a/src/frontend/src/modals/formModal/chatMessage/index.tsx +++ b/src/frontend/src/modals/formModal/chatMessage/index.tsx @@ -7,7 +7,7 @@ import remarkGfm from "remark-gfm"; import remarkMath from "remark-math"; import MaleTechnology from "../../../assets/male-technologist.png"; import Robot from "../../../assets/robot.png"; -import SanitizedHTMLWrapper from "../../../components/SanitizedDiv"; +import SanitizedHTMLWrapper from "../../../components/SanitizedHTMLWrapper"; import { THOUGHTS_ICON } from "../../../constants"; import { ChatMessageType } from "../../../types/chat"; import { classNames } from "../../../utils"; diff --git a/src/frontend/src/modals/genericModal/index.tsx b/src/frontend/src/modals/genericModal/index.tsx index efd7dcd22..0ae00ef2a 100644 --- a/src/frontend/src/modals/genericModal/index.tsx +++ b/src/frontend/src/modals/genericModal/index.tsx @@ -1,6 +1,6 @@ import { FileText, Variable } from "lucide-react"; import { useContext, useEffect, useRef, useState } from "react"; -import SanitizedHTMLWrapper from "../../components/SanitizedDiv"; +import SanitizedHTMLWrapper from "../../components/SanitizedHTMLWrapper"; import ShadTooltip from "../../components/ShadTooltipComponent"; import { Badge } from "../../components/ui/badge"; import { Button } from "../../components/ui/button";