Skip to content

Commit 9213a4e

Browse files
authored
Update src/build/patches.ts
1 parent 956dcf9 commit 9213a4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/build/patches.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function handleTyped(type: Node): Typed {
6666
function handleAdditionalTypes(node: Node) {
6767
for (const child of node.children) {
6868
if (child.name === "additionalTypes") {
69-
const additionalTypes = child.values.map((v) => string(v));
69+
const additionalTypes = child.values.map(string);
7070
return { additionalTypes };
7171
}
7272
}

0 commit comments

Comments
 (0)