fix error + format

This commit is contained in:
2025-04-29 00:29:00 +02:00
parent 3307f89d7d
commit 99f1890257
63 changed files with 9380 additions and 7015 deletions
+9 -6
View File
@@ -1,10 +1,13 @@
const warn_messages = [
["%cDo not paste any text in here","background: red; color: yellow; font-size: x-large"],
["Pasting anything in here may give others access to your account."]
[
'%cDo not paste any text in here',
'background: red; color: yellow; font-size: x-large',
],
['Pasting anything in here may give others access to your account.'],
]
function warnmessage() {
for (let message of warn_messages) {
console.log(message[0],message[1]);
}
for (let message of warn_messages) {
console.log(message[0], message[1])
}
}
const warn_message_int = setInterval(warnmessage,3000)
const warn_message_int = setInterval(warnmessage, 3000)