chore: rabbit comments

This commit is contained in:
Stavros
2026-06-09 11:57:29 +03:00
parent 3c9817cf39
commit 6a4d85dc41
8 changed files with 78 additions and 44 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ export function useScreenParams(params: URLSearchParams): ScreenParams {
export function recompileScreenParams(params: ScreenParams): string {
const p = new URLSearchParams(
Object.fromEntries(
Object.entries(params).filter(([, v]) => v !== null),
Object.entries(params).filter(([, v]) => v != null),
) as Record<string, string>,
).toString();