remove console.log statements
This commit is contained in:
parent
eb0ddfcc1e
commit
2637d5666b
2 changed files with 0 additions and 2 deletions
|
@ -27,7 +27,6 @@ const onLeave = (event: Event) => {
|
|||
|
||||
const onAcknowledge = (event: Event) => {
|
||||
event.preventDefault()
|
||||
console.log(rememberChecked.value)
|
||||
if (rememberChecked.value) {
|
||||
storage.write(`${props.storageId}::rememberWarning`, true)
|
||||
}
|
||||
|
|
|
@ -151,7 +151,6 @@ export const awaitCondition = (condition: () => boolean, interval: number = 100,
|
|||
let _attempts = 1
|
||||
const wait: any = () => {
|
||||
_attempts += 1
|
||||
console.log(condition())
|
||||
if (condition()) {
|
||||
return resolve()
|
||||
} else if (_attempts > tries) {
|
||||
|
|
Loading…
Add table
Reference in a new issue