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
The useBooleanShorthandSyntax option (which is on by default), strips false values.
While the behavior is fine for a true value: <Foo bar={true}> --> <Foo bar>,
it's not for a false value: <Foo bar={false}> --> <Foo>,
which is definitely not the same thing, the prop is removed completely.