Skip to content

Commit

Permalink
fix: call parseJsDoc without second param
Browse files Browse the repository at this point in the history
  • Loading branch information
efrenaragon96 committed Jun 1, 2023
1 parent e49d5fd commit 3f791b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function extractProp(
typeSystem: TypeSystem,
createPropDef: PropDefFactory
): ExtractedProp | null {
const jsDocParsingResult = parseJsDoc(docgenInfo.description, {});
const jsDocParsingResult = parseJsDoc(docgenInfo.description);
const isIgnored = jsDocParsingResult.includesJsDoc && jsDocParsingResult.ignore;

if (!isIgnored) {
Expand Down

0 comments on commit 3f791b5

Please sign in to comment.