From 7650e1e0e03ec5a664e7305fa78041f3cc68d1d2 Mon Sep 17 00:00:00 2001 From: riefive Date: Mon, 20 Oct 2025 14:16:52 +0700 Subject: [PATCH] fix: save list of visitor --- app/components/app/sep/list-visit.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/app/sep/list-visit.vue b/app/components/app/sep/list-visit.vue index fdad0791..ed6aec77 100644 --- a/app/components/app/sep/list-visit.vue +++ b/app/components/app/sep/list-visit.vue @@ -3,14 +3,14 @@ import PaginationView from '~/components/pub/my-ui/pagination/pagination-view.vue' // Types -import type { SepHistoryData } from './list-cfg.history' +import type { SepVisitData } from './list-cfg.visit' import type { PaginationMeta } from '~/components/pub/my-ui/pagination/pagination.type' // Configs import { config } from './list-cfg.history' const props = defineProps<{ - data: SepHistoryData[] + data: SepVisitData[] paginationMeta?: PaginationMeta }>()