islongEvents -> isLongEvents

This commit is contained in:
Massedil
2024-11-21 20:23:40 +01:00
committed by setop
parent 71c0ce37a9
commit f6c273f6f3
4 changed files with 70 additions and 4 deletions

View File

@@ -227,8 +227,8 @@ export function useIsLongEvents() {
config: Pick<IConfig, "longEvents">;
}>(LONG_EVENTS);
const islongEvents = computed(() => result.value?.config.longEvents);
return { islongEvents, error, loading };
const isLongEvents = computed(() => result.value?.config.longEvents);
return { isLongEvents, error, loading };
}
export function useAnalytics() {