mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 05:37:20 +01:00
Fixed share url save.
This commit is contained in:
parent
b3f8bbe3fc
commit
7d952029c1
3 changed files with 8 additions and 4 deletions
|
|
@ -12,7 +12,7 @@ export function usePagedQuery<T = any>({
|
|||
const { query: queryParams } = useNavigation();
|
||||
const [params, setParams] = useState<PageParams>({
|
||||
search: '',
|
||||
page: +queryParams.page || 1,
|
||||
page: queryParams.page || '1',
|
||||
});
|
||||
|
||||
const { useQuery } = useApi();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue