Skip to content

Commit 99d833b

Browse files
authored
Merge pull request fullstackreact#95 from mistenkt/patch-1
Fix for custom auth providers
2 parents a43cca8 + 972ef4e commit 99d833b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

react-native-oauth.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default class OAuthManager {
3030
}
3131

3232
addProvider(provider) {
33-
Object.assign({}, authProviders, provider);
33+
authProviders = Object.assign({}, authProviders, provider);
3434
}
3535

3636
configure(providerConfigs) {

0 commit comments

Comments
 (0)