@idealyst/oauth-client 1.2.13 → 1.2.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idealyst/oauth-client",
3
- "version": "1.2.13",
3
+ "version": "1.2.14",
4
4
  "description": "Universal OAuth2 client for web and React Native",
5
5
  "main": "src/index.ts",
6
6
  "module": "src/index.ts",
@@ -66,7 +66,7 @@ export class NativeOAuthClient<T = OAuthResult> implements OAuthClient<T> {
66
66
  return
67
67
  }
68
68
  }
69
- }).catch(error => {
69
+ }).catch((error: Error) => {
70
70
  console.warn('Failed to get initial URL:', error)
71
71
  })
72
72