cleanup: remove logs

This commit is contained in:
Liyas Thomas
2021-05-15 06:47:13 +00:00
committed by GitHub
parent 8e3ecb4c25
commit 76866f78f0
13 changed files with 5 additions and 45 deletions

View File

@@ -8,8 +8,6 @@ let authToken: String | null = null
export function registerApolloAuthUpdate() {
fb.idToken$.subscribe((token: String | null) => {
console.log(token, "from sub")
authToken = token
})
}
@@ -18,8 +16,6 @@ export function registerApolloAuthUpdate() {
* Injects auth token if available
*/
const authLink = setContext((_, { headers }) => {
console.log(authToken)
if (authToken) {
return {
headers: {