Showing
1 changed file
with
0 additions
and
2 deletions
| ... | ... | @@ -98,13 +98,11 @@ const transform: AxiosTransform = { |
| 98 | 98 | if (withToken !== false) { |
| 99 | 99 | const shareToken = getShareJwtToken(); |
| 100 | 100 | if (withShareToken && shareToken) { |
| 101 | - console.log({ withShareToken, shareToken }); | |
| 102 | 101 | config.headers['X-Authorization'] = options.authenticationScheme |
| 103 | 102 | ? `${options.authenticationScheme} ${shareToken}` |
| 104 | 103 | : shareToken; |
| 105 | 104 | } else { |
| 106 | 105 | const token = getJwtToken(); |
| 107 | - console.log({ token }); | |
| 108 | 106 | if (token) { |
| 109 | 107 | config.headers['X-Authorization'] = options.authenticationScheme |
| 110 | 108 | ? `${options.authenticationScheme} ${token}` | ... | ... |