style: fmt

This commit is contained in:
tigattack
2025-09-25 08:59:28 +01:00
parent 469107c149
commit 35eb9303b1
6 changed files with 162 additions and 142 deletions

View File

@@ -292,7 +292,9 @@ const Hosts = () => {
newSearchParams.delete("action");
navigate(
`/hosts${newSearchParams.toString() ? `?${newSearchParams.toString()}` : ""}`,
{ replace: true },
{
replace: true,
},
);
}
@@ -306,7 +308,9 @@ const Hosts = () => {
newSearchParams.delete("selected");
navigate(
`/hosts${newSearchParams.toString() ? `?${newSearchParams.toString()}` : ""}`,
{ replace: true },
{
replace: true,
},
);
}
}, [searchParams, navigate]);