Bug fix for signing out with a passcode and then trying to sign back in with the same passcode without refreshing the page.

This commit is contained in:
Scott Idem
2026-03-04 13:31:43 -05:00
parent b064d8c235
commit fb78293fdf

View File

@@ -284,6 +284,10 @@
trigger = 'process_permission_check';
entered_passcode = ''; // Clear the entered passcode
// Reset so the same passcode can be re-entered after clearing.
// Without this, the $effect guard (entered_passcode != checked_passcode) silently
// blocks re-entry of the same passcode until the component remounts (page refresh).
checked_passcode = null;
show_passcode_input = true;
$ae_loc.app_cfg.show_element__menu = false;