mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
const-antly annoying linter
although it's a valid complaint here
This commit is contained in:
parent
312143315b
commit
b35d56167e
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ export async function startTermsFlow(
|
|||
}
|
||||
|
||||
// if there's anything left to agree to, prompt the user
|
||||
let numAcceptedBeforeAgreement = agreedUrlSet.size;
|
||||
const numAcceptedBeforeAgreement = agreedUrlSet.size;
|
||||
if (unagreedPoliciesAndServicePairs.length > 0) {
|
||||
const newlyAgreedUrls = await interactionCallback(unagreedPoliciesAndServicePairs, [...agreedUrlSet]);
|
||||
console.log("User has agreed to URLs", newlyAgreedUrls);
|
||||
|
|
Loading…
Reference in a new issue