fix(token): fix typo

pull/662/head
defclass 2020-11-17 16:05:53 +08:00
parent 3a1d7a1c8c
commit 8441f8139c
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@
(let [{:keys [token expires_at] :as m} (get tokens installation_id)]
(if (and token expires_at)
(merge repo {:token token :expires_at expires_at})
(do (js/conole.log "Can't find token, expires_at key") m))))
(do (js/console.log "Can't find token, expires_at key") m))))
repos (mapv set-token-f repos)]
(swap! state assoc-in [:me :repos] repos))))))