chore: fix all linting issues and optimize components

This commit is contained in:
2026-02-11 10:40:57 +01:00
parent 5b4d3ebb41
commit c37fabdc8f
23 changed files with 275 additions and 59 deletions

View File

@@ -2,7 +2,7 @@
* Centralized configuration management for the application.
* This file provides a type-safe way to access environment variables.
*/
import { env, getRawEnv } from './env';
import { getRawEnv } from './env';
let memoizedConfig: ReturnType<typeof createConfig> | undefined;

View File

@@ -1,7 +1,6 @@
import nodemailer from 'nodemailer';
import { getServerAppServices } from '@/lib/services/create-services.server';
import { config } from '../config';
import { ReactElement } from 'react';
let transporterInstance: nodemailer.Transporter | null = null;