diff --git a/auth_oauth_autologin/static/src/js/web_login.js b/auth_oauth_autologin/static/src/js/web_login.js index 72a367194c..836f404694 100644 --- a/auth_oauth_autologin/static/src/js/web_login.js +++ b/auth_oauth_autologin/static/src/js/web_login.js @@ -15,7 +15,6 @@ odoo.define("auth_oauth_autologin.redirect", function(require) { if (url.includes("/web/login")) { url = url.replace("/web/login", "/web"); } - $.blockUI(); this._rpc({ route: "/auth/auto_login_redirect_link", params: { @@ -25,7 +24,6 @@ odoo.define("auth_oauth_autologin.redirect", function(require) { if (result) { window.location = result; } - $.unblockUI(); }); return def; },