From e24bc5b57297d17f42acbdb12b90e732283ea59f Mon Sep 17 00:00:00 2001 From: Andrew Aquino Date: Fri, 26 Jun 2026 12:35:17 -0700 Subject: [PATCH] refactor(site): use our Link component in Markdown instead of MUI (#26758) ref DEVEX-517 MUI's `Link` color does not come from our design system, whereas our `Link`'s does --- site/src/components/Markdown/Markdown.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/Markdown/Markdown.tsx b/site/src/components/Markdown/Markdown.tsx index c76d062d1c..104861f842 100644 --- a/site/src/components/Markdown/Markdown.tsx +++ b/site/src/components/Markdown/Markdown.tsx @@ -1,5 +1,4 @@ import type { Interpolation, Theme } from "@emotion/react"; -import Link from "@mui/material/Link"; import isEqual from "lodash/isEqual"; import { createElement, @@ -14,6 +13,7 @@ import ReactMarkdown, { type Options } from "react-markdown"; import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; import { dracula } from "react-syntax-highlighter/dist/cjs/styles/prism"; import gfm from "remark-gfm"; +import { Link } from "#/components/Link/Link"; import { Table, TableBody,