fix: 🐛 semikolonviolation!

This commit is contained in:
Erik Hellman 2021-02-27 14:53:03 +01:00
parent 9bde441907
commit 46c62601a2
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ export class Api extends EventEmitter {
if (this.isFake) return fakeResponse(fake.children())
const startBundleResponse = await this.fetch('startBundle', routes.startBundle, this.session)
const startBundleText = await startBundleResponse.text();
const startBundleText = await startBundleResponse.text()
const apiKeyMatches = apiKeyRegex.exec(startBundleText)
const apiKey = apiKeyMatches && apiKeyMatches.length > 1 ? apiKeyMatches[1] : ''