Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
@yashovardhan I usually "fix" UIs to reduce the whitespace, PTAL and see if you prefer that
| crossorigin: "anonymous", | ||
| }, | ||
| ], | ||
| stylesheets: [require.resolve("katex/dist/katex.min.css")], |
There was a problem hiding this comment.
KaTeX stylesheet may break with filesystem path instead of URL
High Severity
The stylesheets config changed from a CDN URL to require.resolve("katex/dist/katex.min.css"), which returns an absolute filesystem path (e.g., /workspace/node_modules/katex/dist/katex.min.css). Docusaurus stylesheets expects URLs that are injected into <link href="..."> tags — a filesystem path won't resolve in the browser, potentially breaking all KaTeX math equation styling site-wide.
There was a problem hiding this comment.
Not sure if this change was even neccessary
yashovardhan
left a comment
There was a problem hiding this comment.
Overall looks good, just not sure about the Katex change. Also only one image was changed for whitespace, not all, we should be consistent in our images particularly.
| crossorigin: "anonymous", | ||
| }, | ||
| ], | ||
| stylesheets: [require.resolve("katex/dist/katex.min.css")], |
There was a problem hiding this comment.
Not sure if this change was even neccessary


Description
IMPORTANT: Need to confirm that /embedded-wallets/dashboard/advanced/custom-chains/ was accidentally excluded from sidebar
Issue(s) fixed
Fixes #2483
Preview
Checklist
External contributor checklist
Note
Low Risk
Mostly copy/formatting changes to documentation with a low-risk Docusaurus config tweak; main risk is potential doc rendering/sidebar regressions (admonition syntax, KaTeX CSS path) rather than product behavior changes.
Overview
This PR is primarily a documentation proofing pass across the
embedded-walletsdocs: it standardizes heading/title casing, list/table punctuation, and terminology (for example, consistent “dashboard” wording), and replaces quoted callouts (>) with Docusaurus admonitions (:::note/:::tip) in many pages.It also makes a small site config change by replacing the external KaTeX stylesheet CDN include with
require.resolve("katex/dist/katex.min.css"), and includes a few minor presentation tweaks (for example, updated image styling) plus small content additions like “Next steps” sections/links in some login guides.Written by Cursor Bugbot for commit 8de786d. This will update automatically on new commits. Configure here.