fix(mdx): resolve React-PDF SVG typings and next-mdx-remote parsing issues for pages/products
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 8s
Build & Deploy / 🧪 QA (push) Successful in 52s
Build & Deploy / 🏗️ Build (push) Successful in 1m58s
Build & Deploy / 🚀 Deploy (push) Failing after 14s
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 1s

This commit is contained in:
2026-06-09 19:21:22 +02:00
parent 5a9c6e4a0a
commit 3cbb4ba700
4 changed files with 16 additions and 3 deletions

View File

@@ -316,7 +316,7 @@ const parseSvgPaths = (filePath: string) => {
const VectorLogo = ({ paths, style }: { paths: { d: string; fill: string }[]; style: any }) => (
<Svg viewBox="0 0 295 99" style={style}>
<G fillRule="evenodd" clipRule="evenodd">
<G>
{paths.map((p, i) => (
<Path key={i} d={p.d} fill={p.fill} />
))}