From b151494db80b081ce7537f8a80eba9ad393e145f Mon Sep 17 00:00:00 2001 From: Accusys Date: Mon, 18 May 2026 12:15:37 +0800 Subject: [PATCH] fix: force show login form on WASM doc --- docs_v1.0/doc_wasm/index.html | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs_v1.0/doc_wasm/index.html b/docs_v1.0/doc_wasm/index.html index 3456887..5afba60 100644 --- a/docs_v1.0/doc_wasm/index.html +++ b/docs_v1.0/doc_wasm/index.html @@ -210,11 +210,7 @@ async function initApp() { async function init() { // Hide sidebar until authenticated document.getElementById('sidebar').style.display = 'none'; - if (await loginUser('demo', 'demo')) { - initApp(); - } else { - showLoginForm(); - } + showLoginForm(); } init();