Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
martypdx committed Nov 5, 2023
1 parent be5960d commit 1f18880
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion www/src/session.js
Expand Up @@ -21,7 +21,7 @@ export async function startSession() {
await injectContinue();
}

// eslint-disable-next-line no-constant-condition
// eslint-disable-next-line no-constant-condition
while (true) {
const stream = await getStream(sessionId);
if (!stream) {
Expand All @@ -33,6 +33,7 @@ export async function startSession() {
}
}
catch (err) {
// eslint-disable-next-line no-console
console.error(err);
alert('Oh noes, something went wrong!\n\n' + err.message);
}
Expand Down

0 comments on commit 1f18880

Please sign in to comment.