let _reminderErrors = []; const reminderErrors = () => { return _reminderErrors; } const guildId = () => { let selected = document.querySelector(".guildList a.is-active"); return selected.dataset["guild"]; } function loadErrors() { fetch(`/dashboard/api/guild/${guildId()}/errors`).then(response => response.json()) } document.addEventListener('DOMContentLoaded', () => { })