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
Oh, issue is not what I thought. It is actually a string property that contains "true" or "false", and it getting output halfway as a boolean and halfway as a string. It should pick one type or the other.
props.myProperty! === 'true';
should be
props.myProperty! === true;
The text was updated successfully, but these errors were encountered: