fix(ci): resolve strict dom structure constraints for nextjs hydration and mdx ast
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 13s
Build & Deploy / 🧪 QA (push) Successful in 1m39s
Build & Deploy / 🏗️ Build (push) Successful in 2m43s
Build & Deploy / 🚀 Deploy (push) Successful in 26s
Build & Deploy / ⚡ Lighthouse (push) Successful in 2m51s
Build & Deploy / 🧪 Smoke Test (push) Successful in 3m20s
Build & Deploy / ♿ WCAG (push) Successful in 2m22s
Build & Deploy / 🛡️ Quality Gates (push) Failing after 2m46s
Build & Deploy / 📸 Visual Diff (push) Failing after 4m50s
Build & Deploy / 🔔 Notify (push) Successful in 2s

This commit is contained in:
2026-02-22 01:19:42 +01:00
parent 046ad4475e
commit dd7e800ec4
4 changed files with 134 additions and 4 deletions

View File

@@ -101,9 +101,9 @@ export const mdxComponents = {
);
},
p: ({ children, ...props }: any) => (
<p {...props} className="text-lg text-text-secondary leading-relaxed mb-6">
<div {...props} className="text-lg text-text-secondary leading-relaxed mb-6">
{children}
</p>
</div>
),
ul: ({ children, ...props }: any) => (
<ul {...props} className="my-8 space-y-3">