fix(docs-ui): strip backticks from affected component names in changelog sync

Vale validation can require backticks around component names like
`useTable` in changesets. The sync script now strips backticks so
these names are matched correctly.

Signed-off-by: Johan Persson <johanopersson@gmail.com>
This commit is contained in:
Johan Persson
2026-03-25 10:00:05 +01:00
parent 9ff7b4d56b
commit 7b77d918ca
+1 -1
View File
@@ -298,7 +298,7 @@ async function parseListItem(
if (componentMatch) {
const componentNames = componentMatch[1]
.split(',')
.map(name => name.trim())
.map(name => name.trim().replace(/`/g, ''))
.filter(Boolean);
componentNames.forEach(name => {