remove console.log statements

This commit is contained in:
lightling 2024-04-10 18:28:32 -04:00
parent eb0ddfcc1e
commit 2637d5666b
2 changed files with 0 additions and 2 deletions

View file

@ -27,7 +27,6 @@ const onLeave = (event: Event) => {
const onAcknowledge = (event: Event) => { const onAcknowledge = (event: Event) => {
event.preventDefault() event.preventDefault()
console.log(rememberChecked.value)
if (rememberChecked.value) { if (rememberChecked.value) {
storage.write(`${props.storageId}::rememberWarning`, true) storage.write(`${props.storageId}::rememberWarning`, true)
} }

View file

@ -151,7 +151,6 @@ export const awaitCondition = (condition: () => boolean, interval: number = 100,
let _attempts = 1 let _attempts = 1
const wait: any = () => { const wait: any = () => {
_attempts += 1 _attempts += 1
console.log(condition())
if (condition()) { if (condition()) {
return resolve() return resolve()
} else if (_attempts > tries) { } else if (_attempts > tries) {