Roy Wang

Results 14 comments of Roy Wang

@adidahiya isn't this a numeric input, not a date? I tried "1000" and it still doesn't show up as "1,000". Codesandbox: https://codesandbox.io/s/cranky-pasteur-sub4b2?file=/src/App.js

@adidahiya so does Blueprint support adding thousands separator character?

Ran into the same issue. Spent an hour debugging why the `onStop` callback is using old values...

@JohnJiang900526 I did not. Try building this: https://github.com/riwu/slions-web/blob/master/web/config-overrides.js With `style: true`: > File sizes after gzip: > > 218.7 KB build/static/js/main.7834052c.js > 33.29 KB build/static/css/main.8d78b96f.css > With `style: 'css'`: >...

I'm facing the same issue as well. I'm using the detached [expo](https://github.com/expo/expo) sdk which tends to mess up linking of other native libraries. Podfile: ``` source 'https://github.com/CocoaPods/Specs.git' platform :ios, '9.0'...

Perhaps check if (i = targetValue) at the end of the loop before the increment? And check if (i => targetValue) before executing the for loop. This way the variable...

Declare your loop control variable as integer (signed) instead of longword (unsigned).

Your low end goes below -2^32? You can use Int64 for bigger range. You asked for a band-aid, but no band-aids are acceptable?

@ljharb Is async/await still discouraged? I can use it without babel (hence no increase in bundle size). It's not supported in IE but Promise isn't either.

I'm facing the same issue https://github.com/riwu/synergy-lab-time-estimation/blob/3a68af7e5cd1c5f4f19a9f389e634ec4a8305fea/client/src/actions/api.js#L4 It works for Android, and iOS built for Debug, but not **iOS built for Release**. The `SAMPLING_API_URL` variable is set in my bash_profile. Tried...