Wunsz

Results 7 comments of Wunsz

This PR partially fixes the issue: https://github.com/transistorsoft/react-native-background-geolocation/pull/1335 But I believe it should be: ``` type: 'still' | 'on_foot' | 'walking' | 'running' | 'in_vehicle' | 'on_bicycle' ``` Or even better:...

Why not set the actual types instead of string? ``` 'still' | 'on_foot' | 'walking' | 'running' | 'in_vehicle' | 'on_bicycle' ``` I raised my own PR that changes both...

My summary of the issue so far is as follows: This issue occurs at least on the following browsers: - Chrome 121.0.6167.139 (Official Build) (64-bit) - Firefox 122.0 (64-bit) This...

What works for us is: 1. Specify `"use client";` at the top of the file where you use the SwapWidget component 2. Before the component is defined, we add: ```...

Not sure if it will help, but please look at my pull request https://github.com/mkoppanen/php-zbarcode/pull/17. For me there was a problem on Debian 8, the MagickWand-config was not found in any...

I've added a workaround in this comment, though I belive a proper solution should be found: https://github.com/Uniswap/widgets/issues/627#issuecomment-1930627298

@LilNait-S what we did is two steps: 1. In the module containing the component that uses the smart-order-router we added: ``` if (typeof window !== "undefined") { // @ts-ignore window.Browser...