From f6fcf4536a3d0f8bc9798c0e63e037cf2fb3bc14 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Wed, 12 Mar 2025 21:10:34 +0000 Subject: [PATCH] style: fix linting issues met Prettier --- backend/src/app.ts | 2 +- backend/src/config.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/app.ts b/backend/src/app.ts index c3d13359..ef18856a 100644 --- a/backend/src/app.ts +++ b/backend/src/app.ts @@ -1,6 +1,6 @@ import express, { Express, Response } from 'express'; import { initORM } from './orm.js'; -import "dotenv/config"; +import 'dotenv/config'; import themeRoutes from './routes/themes.js'; import learningPathRoutes from './routes/learning-paths.js'; diff --git a/backend/src/config.ts b/backend/src/config.ts index b14d9fed..73a3380a 100644 --- a/backend/src/config.ts +++ b/backend/src/config.ts @@ -1,6 +1,5 @@ import { EnvVars, getEnvVar } from './util/envvars.js'; - // API export const DWENGO_API_BASE = getEnvVar(EnvVars.LearningContentRepoApiBaseUrl); export const FALLBACK_LANG = getEnvVar(EnvVars.FallbackLanguage);