Fixed issue with queries running twice.

This commit is contained in:
Mike Cao 2025-02-11 20:35:36 -08:00
parent 2df67fbad9
commit 9950ecda82
3 changed files with 2 additions and 8 deletions

View file

@ -24,7 +24,7 @@ export type ReportType = ObjectValues<typeof REPORT_TYPES>;
export interface PageParams {
search?: string;
page?: string;
page?: string | number;
pageSize?: string;
orderBy?: string;
sortDescending?: boolean;