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 b2ae2f9 according to the output
from prettier.

Details: https://deepsource.io/gh/Jm-Paunlagui/Matrix-Lab-Client/transform/1a83dad8-d200-424f-9bd0-b30a3ee60df3/
  • Loading branch information
deepsource-autofix[bot] committed Feb 6, 2023
1 parent b2ae2f9 commit 00e1d1f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/src/helpers/Auth.js
@@ -1,7 +1,7 @@
import cookie from "js-cookie";
import {importSPKI, jwtVerify} from "jose";
import {MATRIX_RSA_PUBLIC_KEY} from "./Helper";
import {toast} from "react-toastify";
import { importSPKI, jwtVerify } from "jose";
import { MATRIX_RSA_PUBLIC_KEY } from "./Helper";
import { toast } from "react-toastify";

/**
* @description Sets the cookie for the application
Expand All @@ -27,8 +27,8 @@ export const removeCookie = (key) => {
if (typeof window !== "undefined") {
cookie.remove(key, {
domain: window.location.hostname,
path: '/',
sameSite: 'lax',
path: "/",
sameSite: "lax",
expires: 1,
});
}
Expand Down

0 comments on commit 00e1d1f

Please sign in to comment.