diff --git a/.changeset/spotty-kangaroos-shout.md b/.changeset/spotty-kangaroos-shout.md new file mode 100644 index 000000000..322995d4a --- /dev/null +++ b/.changeset/spotty-kangaroos-shout.md @@ -0,0 +1,5 @@ +--- +"@viron/lib": patch +--- + +Set the partition option to false as the default. diff --git a/packages/nodejs/src/helpers/cookies.ts b/packages/nodejs/src/helpers/cookies.ts index 2bc1c5913..122b5087e 100644 --- a/packages/nodejs/src/helpers/cookies.ts +++ b/packages/nodejs/src/helpers/cookies.ts @@ -24,9 +24,10 @@ export const genCookie = ( if (!opts.sameSite) { opts.sameSite = 'none'; } - if (opts.partitioned === undefined) { - opts.partitioned = true; - } + // TODO: Set to true by default after all 3pcd support is complete + // if (opts.partitioned === undefined) { + // opts.partitioned = true; + // } return serialize(key, value, opts); };