An error has occurred

{{terminalError}}

setTimeout(function() { try { var goToAllTermsSectionBtn = document.getElementById('go-to-all-terms-state'); var initialStateSection = document.getElementById('initial-section'); var allTermsStateSection = document.getElementById('all-terms-section'); var goToInitialSectionBtn = document.getElementById('go-to-initial-screen'); function showInitialSection() { goToInitialSectionBtn.style.display = 'none'; allTermsStateSection.style.display = 'none'; initialStateSection.style.display = 'block'; } function showAllTermsSection() { initialStateSection.style.display = 'none'; allTermsStateSection.style.display = 'block'; goToInitialSectionBtn.style.display = 'block'; } goToAllTermsSectionBtn.addEventListener('click', showAllTermsSection); goToInitialSectionBtn.addEventListener('click', showInitialSection); }, 0); } catch (e) { console.error(e); }