Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinstubbs committed Jul 8, 2024
1 parent f85ec53 commit 0efe30b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/core/src/core/pantheon-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,10 @@ export const PantheonAPI = (givenOptions?: PantheonAPIOptions) => {

// Set or delete the PCC-GRANT cookie.
if (pccGrant) {
await setCookie(res, `PCC-GRANT=${pccGrant}; Path=/; SameSite=None;Secure;`);
await setCookie(
res,
`PCC-GRANT=${pccGrant}; Path=/; SameSite=None;Secure;`,
);
} else if (
options?.getSiteId != null &&
req.cookies?.["PCC-GRANT"] != null
Expand Down

0 comments on commit 0efe30b

Please sign in to comment.