R3DST0RM

Results 7 comments of R3DST0RM

As a workaround I used a small patch tool which removes the duplicate semicolon, afterwards the error disappears and everything works fine again. The tool: https://github.com/Semantic-Org/Semantic-UI-React/issues/4287#issuecomment-1016579332 Open merge request to...

Are there any updates on why this isn't merged yet?

Were you able to solve the issue?

Are there any updates on this?

Also hoping in. How it is currently done, requests fail on mobile devices using React-Native with fetch. Treating enum values as scalar values fixes it. ```typescript if (requestParameters.type !== undefined)...

Facing the exact same issue, while setting `caption` and `status` in a ternary. ```javascript ``` *Note:* Not using expo, it's a React Native CLI project. "@eva-design/eva": "2.2.0", "@ui-kitten/components": "5.1.2", "@ui-kitten/eva-icons":...

> @R3DST0RM The fix for me was to replace undefined with 'basic' > > ```js > {...props} > caption={hasCaption ? caption : undefined} > status={hasStatus ? status : 'basic'} >...