Skip to content

Commit 234f055

Browse files
fix typo makeComponentNode.ts
1 parent cd0f9f0 commit 234f055

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integrations/utils/makeComponentNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function makeComponentNode(
2121
type: "mdxJsxFlowElement",
2222
name,
2323
attributes: Object.entries(attributes)
24-
// Filter out non-truthy attributes to avoid empty attrs being parsed as `true`.
24+
// Filter out non-truthy attributes to avoid empty attributes being parsed as `true`.
2525
.filter(([_k, v]) => v !== false && Boolean(v))
2626
.map(([name, value]) => ({
2727
type: "mdxJsxAttribute",

0 commit comments

Comments
 (0)