Patrick Wozniak

Results 16 comments of Patrick Wozniak

For everyone else with the same issue: Make sure you have all tags correctly parsed by standard-version (For me the problem was that a team member forgot to push the...

Can confirm the new steps. First I thought I selected the wrong region but it was correct. With the new steps it's working 👍

With browserify.. Add to your package.json: ``` json "browser": { "angular-sortable-view": "./node_modules/angular-sortable-view/src/angular-sortable-view.min.js" } ``` then ``` javascript require('angular-sortable-view'); angular.module('sample', [ 'angular-sortable-view' ]); ```

Hi @angelos3lex, you're right. It's on my TODO to rewrite all in Typescript. Until then feel free to send a Pull Request to improve the [current implementation](https://github.com/patlux/react-native-bluetooth-state-manager/pull/55).

Same issue here. It only works without `turbo`. If I execute the command directly it creates the file, but not with turbo. ```json # package.json "scripts": { "dev": "npx turbo...

Got it. It works with `[email protected]` and below but it stops working with `[email protected]`

Small workaround (similiar to the solution above, but) by setting `key=` ```tsx const [resetKey, setResetKey] = useState(0) { if (error.message.includes('CameraDevice was already closed')) { setResetKey(prev => prev + 1) }...

> can you guys check if this patch solves this issue? > > #2108 This fixes the crash on my Samsung A53

> I had the same issue, and following the troubleshooting steps from the doc fixed the problem. Especially : > > ``` > ./android/gradlew clean > rm -rf android/.gradle android/.idea...