Skip to content

Commit 0ecc89c

Browse files
committed
fix: rebuild
1 parent df352bb commit 0ecc89c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { AdminForthPlugin } from "adminforth";
22
import type { IAdminForth, AdminForthResource, AdminForthComponentDeclaration } from "adminforth";
33
import { AdminForthFilterOperators } from "adminforth";
44
import type { PluginOptions } from './types.js';
5-
import type { FilterParams } from "@/types/Common";
65

76
export default class extends AdminForthPlugin {
87
options: PluginOptions;
@@ -50,7 +49,7 @@ export default class extends AdminForthPlugin {
5049
}
5150
);
5251

53-
const normalizeFilterValue = (filters: FilterParams[]) => {
52+
const normalizeFilterValue = (filters: any[]) => {
5453
const filtersToReturn = [];
5554
for (const filter of filters) {
5655
if (filter.field.startsWith('_universal_search_')) {

0 commit comments

Comments
 (0)