diff --git a/src/components/overview/slots/JobSlot.vue b/src/components/overview/slots/JobSlot.vue
index e42584b..69f1408 100644
--- a/src/components/overview/slots/JobSlot.vue
+++ b/src/components/overview/slots/JobSlot.vue
@@ -123,7 +123,7 @@ export default defineComponent({
const quasar = useQuasar();
// Make sure users are loaded if we can assign them
- onBeforeMount(async () => await userStore.getUsers());
+ onBeforeMount(() => void userStore.getUsers());
/* Stuff used for general display */
// Get displayname of user
diff --git a/src/components/overview/slots/ServiceUserChip.vue b/src/components/overview/slots/ServiceUserChip.vue
index d152205..90929bd 100644
--- a/src/components/overview/slots/ServiceUserChip.vue
+++ b/src/components/overview/slots/ServiceUserChip.vue
@@ -7,7 +7,7 @@