diff --git a/frontend/src/routes/(authentication)/password-reset/+page.server.ts b/frontend/src/routes/(authentication)/password-reset/+page.server.ts index 294e5f545..2a9257664 100644 --- a/frontend/src/routes/(authentication)/password-reset/+page.server.ts +++ b/frontend/src/routes/(authentication)/password-reset/+page.server.ts @@ -26,13 +26,6 @@ const limiter = new RetryAfterRateLimiter({ rates: { IP: [10, 'h'], // IP address limiter IPUA: [5, 'm'], // IP + User Agent limiter - cookie: { - // Cookie limiter - name: 'limiterid', // Unique cookie name for this limiter - secret: 'SECRETKEY-SERVER-ONLY', // Use $env/static/private - rate: [2, 'm'], - preflight: true // Require preflight call (see load function) - } } });