Fixed share url save.

This commit is contained in:
Mike Cao 2025-02-03 13:56:30 -08:00
parent b3f8bbe3fc
commit 7d952029c1
3 changed files with 8 additions and 4 deletions

View file

@ -41,7 +41,7 @@ export interface PageResult<T> {
export interface PagedQueryResult<T> {
result: PageResult<T>;
search: any;
query: any;
params: PageParams;
setParams: Dispatch<SetStateAction<T | PageParams>>;
}