From f65d6d69fc6a5cfe03ce19a4238eb0fb8fc33a0a Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Fri, 3 Feb 2023 08:03:23 +0000 Subject: [PATCH] Format code with prettier This commit fixes the style issues introduced in 42b2793 according to the output from prettier. Details: https://deepsource.io/gh/Jm-Paunlagui/Matrix-Lab-Client/transform/0d5dfad5-07f4-43df-8fb0-a69b70811257/ --- client/src/helpers/Auth.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/helpers/Auth.js b/client/src/helpers/Auth.js index 4ac9a659..3f17bc63 100644 --- a/client/src/helpers/Auth.js +++ b/client/src/helpers/Auth.js @@ -11,8 +11,8 @@ import { toast } from "react-toastify"; export const setCookie = (key, value) => { if (typeof window !== "undefined") { cookie.set(key, value, { - domain: 'matrix-lab-client.vercel.app', - sameSite: 'none', + domain: "matrix-lab-client.vercel.app", + sameSite: "none", secure: true, }); }