Joey Fenny

Results 9 comments of Joey Fenny

> I'm having this same issue. Set the TZ variable, checked the logs in Docker. The only thing that seems to stand out is: > > ```json > {"type":"log","timestamp":"2022-03-07T09:21:09Z","message":"Error: [11]...

This fixed it for me https://github.com/henrywhitaker3/Speedtest-Tracker/pull/922

I can confirm this fixed https://github.com/henrywhitaker3/Speedtest-Tracker/issues/902 for me

@henrywhitaker3 this is a critical fix and needs to be merged asap. Currently, the latest version of your app does not work at all unless one adds this fix.

This has been open for over a year. Has anyone found a solution yet? Using a barrel file results in my bundle reaching 12mb whereas without I'm less than 1mb

settings sideEffects to false and adding `/*#__PURE__*/` to the function call did not work either. But I agree that this discussion should perhaps be moved to webpack

I too am having this issue. I tried @bekazandukeli and @NathanBeesley solutions and although they seemed like they should work, they didn't work for me. @VanDu97 solution did work for...

I just figured out how accomplish using the code below. (I'm using lodash) ``` {_.flatMap( value.split(' ').map((word: string) => { if (state[articleID].blacklistedWords[word]) { return ( {word} ); } else {...