tylermcdonald
tylermcdonald
> I encountered this problem when I was simply calling startScan() > > Exception: MissingPluginException(No implementation found for method setLogLevel on channel flutter_blue_plus/methods) I was running into this, but I...
Is this still an issue? Log level used to work for me, but I'm now running into the issues @maks mentioned. Any solutions or additions needed to fix this, or...
Hey, I got this same issue. I believe it has to do with "By default, components inside app are [React Server Components](https://nextjs.org/docs/getting-started/react-essentials#server-components)." which is a new part of NextJS 13....
I think adding a custom replacer to the `JSON.stringify(user)` of something like: ``` function replacer(key, value) { if (typeof value === 'string') { return value.replace(/'/g, "''"); } return value; }...