diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-11 13:56:40 -0800 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-11 13:56:40 -0800 |
commit | ebc1b4dd9a39a1d82cb81f070bcae1f9f2146832 (patch) | |
tree | c98b5d9b621495cdb5807b977e0a92bf4c047eba | |
parent | 996c2b151772d17d910805bdb5bdfaf8e857d94d (diff) |
removed console log for token
-rw-r--r-- | src/services/UserProfileService.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/services/UserProfileService.ts b/src/services/UserProfileService.ts index 39c99f33..9061dd5e 100644 --- a/src/services/UserProfileService.ts +++ b/src/services/UserProfileService.ts @@ -327,7 +327,6 @@ export const editSPSwipeTutorial = async (user: UserType) => { request.append('sp_swipe_tutorial', 1); const endpoint = EDIT_PROFILE_ENDPOINT + `${user.userId}/`; const token = await AsyncStorage.getItem('token'); - console.log('token: ', token); let response = await fetch(endpoint, { method: 'PATCH', headers: { |