From 4aca6b64a01d55043e06c2eeafa1b105be75a8b8 Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Mon, 17 Aug 2026 16:43:15 +0200 Subject: [PATCH] style: prettier formatting --- backend/apps/api/src/auth/auth-session.controller.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/apps/api/src/auth/auth-session.controller.ts b/backend/apps/api/src/auth/auth-session.controller.ts index d78eb71..deb6fb3 100644 --- a/backend/apps/api/src/auth/auth-session.controller.ts +++ b/backend/apps/api/src/auth/auth-session.controller.ts @@ -1,6 +1,9 @@ import { Body, Controller, Post } from '@nestjs/common'; import { TokenExchangeService } from '../../../../libs/auth/src'; -import type { AuthorizationCodeExchangeRequest, AuthorizationCodeExchangeResult } from '../../../../libs/auth/src'; +import type { + AuthorizationCodeExchangeRequest, + AuthorizationCodeExchangeResult, +} from '../../../../libs/auth/src'; @Controller('auth') export class AuthSessionController {