From 9004313ff87f9936bd5913f7ef88232a0dac898e Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Wed, 2 Apr 2025 12:23:20 -0400 Subject: [PATCH] chore: lint to fix build --- api/src/unraid-api/main.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/api/src/unraid-api/main.ts b/api/src/unraid-api/main.ts index a2f7b5ed1..2c0312d1a 100644 --- a/api/src/unraid-api/main.ts +++ b/api/src/unraid-api/main.ts @@ -52,7 +52,13 @@ export async function bootstrapNestServer(): Promise { origin: true, // Allows all origins credentials: true, methods: ['GET', 'PUT', 'POST', 'DELETE', 'OPTIONS'], - allowedHeaders: ['Content-Type', 'Authorization', 'X-Requested-With', 'X-CSRF-TOKEN', 'X-API-KEY'], + allowedHeaders: [ + 'Content-Type', + 'Authorization', + 'X-Requested-With', + 'X-CSRF-TOKEN', + 'X-API-KEY', + ], }); // Setup Nestjs Pino Logger