Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdiez committed Sep 23, 2023
1 parent 72f6ae8 commit a351be9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/runtime/utils.azure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export function getAzureParsedCookiesFromHeaders(
const rawCookies = Array.isArray(raw) ? raw : splitCookiesString(String(raw));
const cookies = rawCookies.flatMap((cookie) => {
const entries = Object.entries(parse(cookie));
console.log(parse(cookie), cookie);
if (entries.length > 0) {
const [entry, ...rest] = entries;
const options = Object.fromEntries(
Expand Down

0 comments on commit a351be9

Please sign in to comment.