Benji

Results 4 comments of Benji

> I see. The only thing I can suggest is to add an optional chaining operator to all properties after the first one. For example: > > ```js > this.props.clipboardData?.location?.id...

Thx for your answer. I think it is the same issue. Indeed, in original description, it is said that "this.props.clipboardData?.location.id" is transformed into __get$(this.props.clipboardData, 'location', true).id In both cases, the...

Thx a lot for your answer. My issue is the same as mentionned by @lg-kialo ```ts # e is undefined e?.myObject[X] ?? 0 # return undeifned with optional chaining #...

thx a lot. Here the new issue: https://github.com/DevExpress/testcafe-hammerhead/issues/2891