style: fix prefer-svelte-reactivity — replace with Svelte reactive equivalents

This commit is contained in:
2026-06-25 14:40:22 +01:00
parent d5e93b3be2
commit 334b911e16
11 changed files with 35 additions and 29 deletions
@@ -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()
});