Skip to content

Commit 047f3c4

Browse files
author
Kadi Kraman
committed
Remove console.logs
1 parent 830a8a8 commit 047f3c4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Example/App.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default class App extends Component<{}, State> {
4141
authorize = async () => {
4242
try {
4343
const authState = await authorize(config);
44-
console.log('auth result ', authState);
44+
4545
this.animateState(
4646
{
4747
hasLoggedInOnce: true,
@@ -61,7 +61,6 @@ export default class App extends Component<{}, State> {
6161
const authState = await refresh(config, {
6262
refreshToken: this.state.refreshToken
6363
});
64-
console.log('refresh result ', authState);
6564

6665
this.animateState({
6766
accessToken: authState.accessToken || this.state.accessToken,

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Build Status](https://travis-ci.org/FormidableLabs/react-native-app-auth.svg?branch=master)](https://travis-ci.org/FormidableLabs/react-native-app-auth)
88
[![npm version](https://badge.fury.io/js/react-native-app-auth.svg)](https://badge.fury.io/js/react-native-app-auth)
99

10-
## This is the API documentation for `react-native-app-auth >= 2.0.` [See version `1.x` documentation here](https://github.com/FormidableLabs/react-native-app-auth/tree/v1.0.1).
10+
#### This is the API documentation for `react-native-app-auth >= 2.0.` [See version `1.x` documentation here](https://github.com/FormidableLabs/react-native-app-auth/tree/v1.0.1).
1111

1212
React Native bridge for [AppAuth-iOS](https://github.com/openid/AppAuth-iOS) and
1313
[AppAuth-Android](https://github.com/openid/AppAuth-Android) SDKS for communicating with

0 commit comments

Comments
 (0)