This commit is contained in:
Emily
2024-06-21 17:50:51 +02:00
parent d8445b3f1a
commit 240a9cd633
3 changed files with 39 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ const ready = ref<boolean>(false);
const props = defineProps<{ slice: SliceName }>();
async function loadData() {
const response = await useTimelineDataRaw('visits', props.slice);
const response = await useVisitsTimeline(props.slice);
if (!response) return;
const fixed = fixMetrics(response, props.slice);
console.log(fixed);