loadList shouldn't be awaited here

This commit is contained in:
Elijah R 2024-04-10 17:05:09 -04:00
parent da9342180a
commit d83f1c8e13

View File

@ -1296,7 +1296,7 @@ document.addEventListener('DOMContentLoaded', async () => {
document.title = TheI18n.GetString(I18nStringKey.kGeneric_CollabVM);
// Load all VMs
await loadList();
loadList();
// Welcome modal
let welcomeModal = new bootstrap.Modal(document.getElementById('welcomeModal') as HTMLDivElement);