Make credentialless false by default

This commit is contained in:
ProgrammerIn-wonderland
2026-03-04 20:54:04 -05:00
parent 237973f227
commit 9a6178e66f
+1 -1
View File
@@ -497,7 +497,7 @@ const launch_app = async (options) => {
}
// credentialless
let credentialless = true;
let credentialless = false;
if ( app_info.metadata?.credentialless !== undefined && typeof app_info.metadata.credentialless === 'boolean' )
{
credentialless = app_info.metadata.credentialless;