diff --git a/frontend/src/components/FTUE/ConnectCalendars.vue b/frontend/src/components/FTUE/ConnectCalendars.vue
index 859ebb04d..c670eb3c6 100644
--- a/frontend/src/components/FTUE/ConnectCalendars.vue
+++ b/frontend/src/components/FTUE/ConnectCalendars.vue
@@ -3,6 +3,7 @@
Connect your calendars to manage your availability
+
calendars.value.filter((item) => item.checked).l
const continueTitle = computed(() => (selected.value ? 'Continue' : 'Please enable one calendar to continue'));
onMounted(async () => {
- await calendarStore.fetch(call);
+ isLoading.value = true;
+ await calendarStore.fetch(call, true);
calendars.value = calendarStore.calendars.map((calendar) => ({
key: calendar.id,
label: calendar.title,
checked: calendar.connected,
}));
+ isLoading.value = false;
});
const onSubmit = async () => {
diff --git a/frontend/src/components/FTUE/Finish.vue b/frontend/src/components/FTUE/Finish.vue
index c2883b64b..65802f8b9 100644
--- a/frontend/src/components/FTUE/Finish.vue
+++ b/frontend/src/components/FTUE/Finish.vue
@@ -21,12 +21,10 @@