diff --git a/playground/src/Editor/SourceEditor.tsx b/playground/src/Editor/SourceEditor.tsx index c6d86bc301..146b448217 100644 --- a/playground/src/Editor/SourceEditor.tsx +++ b/playground/src/Editor/SourceEditor.tsx @@ -57,7 +57,7 @@ export default function SourceEditor({ .filter((check) => check.fix) .map((check) => ({ title: check.fix - ? check.fix.message ?? `Fix ${check.code}` + ? `${check.code}: ${check.fix.message}` ?? `Fix ${check.code}` : "Autofix", id: `fix-${check.code}`, kind: "quickfix",