style: fix prefer-svelte-reactivity — replace with Svelte reactive equivalents
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
import * as Modal from '$lib/components/ui/dialog';
|
||||
import { Skeleton } from '$lib/components/ui/skeleton';
|
||||
import { Separator } from '$lib/components/ui/separator';
|
||||
import { SvelteURLSearchParams } from 'svelte/reactivity';
|
||||
|
||||
type CustomService = {
|
||||
id: string;
|
||||
@@ -106,7 +107,7 @@
|
||||
async function fetchServices() {
|
||||
loading = true;
|
||||
try {
|
||||
const params = new URLSearchParams({
|
||||
const params = new SvelteURLSearchParams({
|
||||
page: page.toString(),
|
||||
per_page: perPage.toString()
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user