File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -39,8 +39,7 @@ export async function renderAuditResultsToHTML(results: AuditResult[]) {
39
39
report += `<li><span style="font-family: monospace">💡</span> <b>${ grouped . notice . length } </b> notices (suggestions)</li>\n` ;
40
40
}
41
41
if ( grouped . warn . length ) {
42
- // TODO: warning sign is rendered as "⚠️" in markdown instead of the emoji
43
- report += `<li><span style="font-family: monospace">⚠️</span> <b>${ grouped . warn . length } </b> warnings (optional)</li>\n` ;
42
+ report += `<li><span style="font-family: monospace">❗️</span> <b>${ grouped . warn . length } </b> warnings (optional)</li>\n` ;
44
43
}
45
44
if ( grouped . error . length ) {
46
45
report += `<li><span style="font-family: monospace">❌</span> <b>${ grouped . error . length } </b> errors (required)</li>\n` ;
You can’t perform that action at this time.
0 commit comments