diff --git a/packages/nc-gui/components/workspace/AuditLogs.vue b/packages/nc-gui/components/workspace/AuditLogs.vue index 6a1b591858..35809fe4c5 100644 --- a/packages/nc-gui/components/workspace/AuditLogs.vue +++ b/packages/nc-gui/components/workspace/AuditLogs.vue @@ -131,10 +131,6 @@ const handleRowClick = (audit: AuditType) => { isRowExpanded.value = true } -const handleSearchAuditLogs = useDebounceFn(() => { - loadAudits() -}, 500) - const toggleOrderBy = (orderBy: 'created_at' | 'user') => { if (orderBy === 'created_at') { auditLogsQuery.value.orderBy = { @@ -203,33 +199,6 @@ const focusTypeSearchRef: VNodeRef = (el) => {