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

@ -119,10 +119,7 @@ const DocumentUploadPopupContent: FC<{
<div className="flex-1 min-h-0 relative overflow-hidden"> <div className="flex-1 min-h-0 relative overflow-hidden">
<div className="h-full overflow-y-auto"> <div className="h-full overflow-y-auto">
<div className="px-6 sm:px-12 pb-5 sm:pb-16"> <div className="px-6 sm:px-12 pb-5 sm:pb-16">
<DocumentUploadTab <DocumentUploadTab searchSpaceId={searchSpaceId} onSuccess={handleSuccess} />
searchSpaceId={searchSpaceId}
onSuccess={handleSuccess}
/>
</div> </div>
</div> </div>
{/* Bottom fade shadow */} {/* Bottom fade shadow */}

View file

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