forked from git.gladyson/openmonetis
fix: lazy-load BETTER_AUTH_SECRET para corrigir Docker build
Validação eager do secret no top-level do módulo causava falha no build Docker porque a env var não existe em build-time. Movido para função getJwtSecret() chamada em runtime. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -34,10 +34,8 @@ export function CategoryCell({
|
||||
|
||||
// Despesa: aumento é ruim (vermelho), diminuição é bom (verde)
|
||||
// Receita: aumento é bom (verde), diminuição é ruim (vermelho)
|
||||
const isPositive =
|
||||
categoryType === "receita" ? isIncrease : isDecrease;
|
||||
const isNegative =
|
||||
categoryType === "receita" ? isDecrease : isIncrease;
|
||||
const isPositive = categoryType === "receita" ? isIncrease : isDecrease;
|
||||
const isNegative = categoryType === "receita" ? isDecrease : isIncrease;
|
||||
|
||||
return (
|
||||
<Tooltip>
|
||||
|
||||
Reference in New Issue
Block a user