diff options
-rw-r--r-- | packages/astro/src/core/cookies/cookies.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/astro/src/core/cookies/cookies.ts b/packages/astro/src/core/cookies/cookies.ts index f61d07a7b..d9bbdad32 100644 --- a/packages/astro/src/core/cookies/cookies.ts +++ b/packages/astro/src/core/cookies/cookies.ts @@ -227,7 +227,9 @@ class AstroCookies implements AstroCookiesInterface { return cookies.headers(); } - #ensureParsed(options: AstroCookieGetOptions | undefined = undefined): Record<string, string | undefined> { + #ensureParsed( + options: AstroCookieGetOptions | undefined = undefined, + ): Record<string, string | undefined> { if (!this.#requestValues) { this.#parse(options); } |