fix: prettier format react-custom-html-parser.tsx
CI / Build & Quality Checks (push) Failing after 5m57s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-02 19:54:01 -04:00
parent 2adf3b4ad2
commit 82840dc4e2
+1 -1
View File
@@ -70,7 +70,7 @@ function renderTokenizedCode(code: string, lang: string): React.ReactNode {
if (!TDS_TOKENIZER_LANGS.has(normalised)) return code;
const tokens = tokenize(code, normalised);
return tokens.map((tok, idx) => (
<span key={idx} style={tok.type !== 'plain' ? tokenStyle(tok.type) : undefined}>
{tok.text}