Max Lang
Max Lang
I had the same issue with https://github.com/manuelbieh/Geolib I tried switching to using `noUnusedParams` and `noUnusedLocals` in `tsconfig.json` and at first I think I got some errors but now it seems...
Not sure if someone has a better solution or a newer fork, but here's what seemed to work for me: TL;DR For android use the `rawScopes: "true"` in your config...
@haotangio I did originally, but worked around it using the code above. Did you try using `rawScopes: 'true'`? As for version, I'm actually using https://github.com/exentrich/react-native-oauth to work around some other...
Ok, it looks like the change to support rawScopes was never officially "released" as a version. Try the following: ```sh npm uninstall --save react-native-ouath npm install --save fullstackreact/react-native-oauth ``` This...
Looks like the same issue as https://github.com/fullstackreact/react-native-oauth/issues/61?
What about using one of the solutions from here: https://stackoverflow.com/questions/7796657/using-a-variable-period-in-an-interval-in-postgres ```ts const describe = await sql` select * from ${sql(table)} where timestamp >= current_timestamp - (${days} || ' day')::INTERVAL`.describe() ```...