fix: prettier format react-custom-html-parser.tsx

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-02 19:54:01 -04:00
parent d43044ccbf
commit 8c2f0a7bee
+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}