You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because of the use of the logical or operator here it is not possible to pass false as an option. Passing false incorrectly results in setDisplayName being set to true. Instead I would recommend using the nullish coalescing operator instead (or some similar approach).
Happy to put in a PR if you need.
The text was updated successfully, but these errors were encountered:
react-docgen-typescript-plugin/src/plugin.ts
Line 290 in 31ce4e8
Because of the use of the logical or operator here it is not possible to pass
false
as an option. Passingfalse
incorrectly results insetDisplayName
being set totrue
. Instead I would recommend using the nullish coalescing operator instead (or some similar approach).Happy to put in a PR if you need.
The text was updated successfully, but these errors were encountered: