We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c59870a commit 0b38805Copy full SHA for 0b38805
src/build/patches.ts
@@ -54,7 +54,9 @@ function handleSingleTypeNode(type: Node): DeepPartial<Typed> {
54
throw new Error("Expected a type node");
55
}
56
const subType =
57
- type.children.length > 0 ? handleSingleTypeNode(type.children[0]) : undefined;
+ type.children.length > 0
58
+ ? handleSingleTypeNode(type.children[0])
59
+ : undefined;
60
return {
61
...optionalMember("type", "string", type.values[0]),
62
subtype: subType,
0 commit comments