diff --git a/web/components/management/candidate-lists.js b/web/components/management/candidate-lists.js
index 1958dffd23b66717844d7f3110323328755e98b3..c58460cb179f7a0c2dc13a09dd6a66ef59a9cd62 100644
--- a/web/components/management/candidate-lists.js
+++ b/web/components/management/candidate-lists.js
@@ -1,6 +1,7 @@
 // Imports
 import * as Auth from "/services/auth/auth.js";
 import * as Common from "/services/common/common.js";
+import * as Messages from "/services/messages/messages.js";
 import * as AreaModel from "/services/model/area-model.js";
 import * as PartyModel from "/services/model/party-model.js";
 import * as CandidateListModel from "/services/model/candidateList-model.js";
@@ -256,7 +257,9 @@ class CandidateList {
           candidateListHandler.editCandidateList(candidateList);
         });
       document
-        .getElementById(`candidateLists-candidateList-delete-${candidateList.ID}`)
+        .getElementById(
+          `candidateLists-candidateList-delete-${candidateList.ID}`
+        )
         .addEventListener("click", function () {
           new Delete(() => {
             candidateListHandler.deleteCandidateList(candidateList);
@@ -280,21 +283,23 @@ class CandidateList {
     });
   }
 
-  newCandidateList() {
+  async newCandidateList() {
     this.method = "POST";
-    this.refreshParties();
+    await this.refreshParties();
     document.getElementById("candidateList-modal-id").value = null;
     document.getElementById("candidateList-modal-party").value = null;
     document.getElementById("candidateList-modal-name").value = null;
     Common.toggleModal("candidateList-modal", "candidateList-modal-card");
   }
 
-  editCandidateList(candidateList) {
+  async editCandidateList(candidateList) {
     this.method = "PUT";
-    this.refreshParties();
+    await this.refreshParties();
     document.getElementById("candidateList-modal-id").value = candidateList.ID;
-    document.getElementById("candidateList-modal-party").value = candidateList.PartyID;
-    document.getElementById("candidateList-modal-name").value = candidateList.Name;
+    document.getElementById("candidateList-modal-party").value =
+      candidateList.PartyID;
+    document.getElementById("candidateList-modal-name").value =
+      candidateList.Name;
     Common.toggleModal("candidateList-modal", "candidateList-modal-card");
   }
 
diff --git a/web/components/management/rounds-card.js b/web/components/management/rounds-card.js
index 19ead682c4413a14446704a20d192d4935b9e36c..1dfb0e20b6431230efedf52b0b37bd7e87a95397 100644
--- a/web/components/management/rounds-card.js
+++ b/web/components/management/rounds-card.js
@@ -228,18 +228,18 @@ class Round {
     // TODO unselect candidateLists
   }
 
-  newRound() {
+  async newRound() {
     this.method = "POST";
-    this.refreshElections();
+    await this.refreshElections();
     document.getElementById("round-modal-id").value = null;
     document.getElementById("round-modal-date").value = null;
     document.getElementById("round-modal-round").value = null;
     Common.toggleModal("round-modal", "round-modal-card");
   }
 
-  editRound(round) {
+  async editRound(round) {
     this.method = "PUT";
-    this.refreshElections();
+    await this.refreshElections();
     document.getElementById("round-modal-id").value = round.ID;
     document.getElementById("round-modal-election-id").value = round.ElectionID;
     document.getElementById("round-modal-date").value = new Date(round.Date)