diff --git a/packages/lib/hooks/useRouterQuery.ts b/packages/lib/hooks/useRouterQuery.ts index a77438af8c0..591e335e88c 100644 --- a/packages/lib/hooks/useRouterQuery.ts +++ b/packages/lib/hooks/useRouterQuery.ts @@ -11,8 +11,6 @@ function fromEntriesWithDuplicateKeys(entries: IterableIterator<[string, string] return result; } - // Consider setting atleast ES2015 as target - // @ts-expect-error for (const [key, value] of entries) { if (result.hasOwnProperty(key)) { let currentValue = result[key];