Micah Engle-Eshleman
Micah Engle-Eshleman
Thanks @rschristian , turns out it's due to a CSSNano bug: https://github.com/cssnano/cssnano/issues/1163 Fixed by disabling the `postcss-merge-longhand` CSS optimization plugin: ```js // preact.config.js export default (config, env, helpers) => {...
Glad this is on your radar. We've found at BeFunky that `FileReader.readAsBinaryString` can be unreliable (it's deprecated in favor of `FileReader.readAsArrayBuffer`and sometimes fails in Chrome on Mac), and `FileReader.readAsDataURL` (base64)...
@taras , here's the actual `update` method where I forgot to call `valueOf` on `this.votes` before setting it back on the parent Microstate. ```js /** * Update user upon app...
We've been using the bubblewrap CLI tool, and after adding a `shareTarget` option the the `twa-manifest.json`, rebuilding, and publishing, our app no longer installs. Here's our "shareTarget" config (subdomain is...
Just a heads up that we were able to get it working by changing the `files` array in `twa-manifest.json` to: ```js "files": [ { "name": "media", "accept": [ "image/*" ]...
> @micahjon Can you see your service-worker where the request is processed? > It just takes us to the main page. config similar to yours. Could it be a handler...
@SaKrAt91 , we also ran into this issue of share target opening a new app instance (instead of the already-open app instance) when testing on Android devices (both Samsung and...
Hey @tumusudheer, were you able to find a solution for finding word timings in the original audio? I was able to do this with [OpenSeq2Seq](https://github.com/NVIDIA/OpenSeq2Seq), but the transcription quality is...