Skip to content

Commit

Permalink
Format code with prettier
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 44ef7f6 according to the output
from prettier.

Details: https://deepsource.io/gh/Jm-Paunlagui/Matrix-Lab-Client/transform/9388c66d-268d-40c6-a15a-41b893a5b001/
  • Loading branch information
deepsource-autofix[bot] authored Feb 3, 2023
1 parent 44ef7f6 commit 0750f8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/helpers/Auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export const setCookie = (key, value) => {
if (typeof window !== "undefined") {
cookie.set(key, value, {
expires: 9000,
domain: 'http://127.0.0.1:5000',
sameSite: 'none',
domain: "http://127.0.0.1:5000",
sameSite: "none",
secure: true,
});
}
Expand Down

0 comments on commit 0750f8f

Please sign in to comment.