lint fix
This commit is contained in:
parent
1ce7dfda79
commit
17dd8abf58
|
@ -45,17 +45,16 @@ async function identifyByApiKey(apiKey) {
|
||||||
)
|
)
|
||||||
if (response.status === 200) {
|
if (response.status === 200) {
|
||||||
const id = await response.json()
|
const id = await response.json()
|
||||||
|
|
||||||
await api.put("/api/keys/userId", { value: id })
|
await api.put("/api/keys/userId", { value: id })
|
||||||
identify(id)
|
identify(id)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
return false
|
return false
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log(error)
|
console.log(error)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function captureException(err) {
|
function captureException(err) {
|
||||||
|
|
Loading…
Reference in New Issue