Skip to content

Commit 7287571

Browse files
committed
lint issue
1 parent 4f4c679 commit 7287571

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib/components/paginationWithLimit.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
useCreateLink?: boolean;
2121
pageParam?: string;
2222
removeOnFirstPage?: boolean;
23-
[key: string]: any;
23+
[key: string]: unknown;
2424
} = $props();
2525
2626
const showLimit = $derived(!!useCreateLink);

src/lib/components/paginator.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
| undefined;
2828
offset?: number;
2929
children: Snippet<[T[], number]>;
30-
[key: string]: any;
30+
[key: string]: unknown;
3131
} = $props();
3232
3333
let total = $derived(items.length);

0 commit comments

Comments
 (0)