We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f4c679 commit 7287571Copy full SHA for 7287571
2 files changed
src/lib/components/paginationWithLimit.svelte
@@ -20,7 +20,7 @@
20
useCreateLink?: boolean;
21
pageParam?: string;
22
removeOnFirstPage?: boolean;
23
- [key: string]: any;
+ [key: string]: unknown;
24
} = $props();
25
26
const showLimit = $derived(!!useCreateLink);
src/lib/components/paginator.svelte
@@ -27,7 +27,7 @@
27
| undefined;
28
offset?: number;
29
children: Snippet<[T[], number]>;
30
31
32
33
let total = $derived(items.length);
0 commit comments