format: auto-fix whitespace

This commit is contained in:
CREDO23 2026-01-14 15:27:42 +02:00
parent 9d3c6f0ee1
commit dc9a797fca
2 changed files with 4 additions and 7 deletions

View file

@ -1,10 +1,10 @@
/**
* Environment configuration for the frontend.
*
*
* This file centralizes access to NEXT_PUBLIC_* environment variables.
* For Docker deployments, these placeholders are replaced at container startup
* via sed in the entrypoint script.
*
*
* IMPORTANT: Do not use template literals or complex expressions with these values
* as it may prevent the sed replacement from working correctly.
*/
@ -24,5 +24,5 @@ export const ETL_SERVICE = process.env.NEXT_PUBLIC_ETL_SERVICE || "DOCLING";
// Helper to check if local auth is enabled
export const isLocalAuth = () => AUTH_TYPE === "LOCAL";
// Helper to check if Google auth is enabled
// Helper to check if Google auth is enabled
export const isGoogleAuth = () => AUTH_TYPE === "GOOGLE";