Temporarily disable real check for testing

This commit is contained in:
KernelDeimos
2024-05-03 01:35:22 -04:00
parent 3e380ba844
commit e9b8c452b9
2 changed files with 1 additions and 35 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ const UIWindow2FASetup = async function UIWindow2FASetup () {
async [`property.value`] (value, { component }) {
console.log('value? ', value)
if ( ! await check_code_(value) ) {
if ( false && ! await check_code_(value) ) {
component.set('error', 'Invalid code');
return;
}