From a6837ff7fb593d5f329b9473eb66461c62a9f386 Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Wed, 14 Jan 2026 22:00:10 +0100 Subject: [PATCH] refactor(auth): reorder imports in `optional-auth.guard.ts` for consistency and readability --- backend/src/auth/guards/optional-auth.guard.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/backend/src/auth/guards/optional-auth.guard.ts b/backend/src/auth/guards/optional-auth.guard.ts index b517c23..0da01cf 100644 --- a/backend/src/auth/guards/optional-auth.guard.ts +++ b/backend/src/auth/guards/optional-auth.guard.ts @@ -1,8 +1,4 @@ -import { - CanActivate, - ExecutionContext, - Injectable, -} from "@nestjs/common"; +import { CanActivate, ExecutionContext, Injectable } from "@nestjs/common"; import { ConfigService } from "@nestjs/config"; import { getIronSession } from "iron-session"; import { JwtService } from "../../crypto/services/jwt.service";