KV
KV
to resolve **Can't resolve 'url' issue**: `npm install url --save` or `yarn add url` and in your webpack.config.js add: `resolve: { fallback: { url: require.resolve("url/"), }, }` but then we...
having the same issue
@r-variichuk patch it to be: `strRep.erase(remove_if(strRep.begin(), strRep.end(), isspace), strRep.end());`
can confirm that that patch works.. had freeze after opening same sheet twice, with the patch all works fine.
```import { useState } from "react"; import { Recorder } from "vmsg"; const recorder = new Recorder({ wasmURL: "https://unpkg.com/[email protected]/vmsg.wasm", }); export const RecordViewNew = () => { const [loading, setLoading]...