From 19ce90c6635ff424d935a638e82b34239da1b2dd Mon Sep 17 00:00:00 2001 From: Guy Ben Aharon Date: Sun, 5 Apr 2026 21:36:42 +0300 Subject: [PATCH] fix --- src/config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config.ts b/src/config.ts index ad06724..1d15b8d 100644 --- a/src/config.ts +++ b/src/config.ts @@ -51,8 +51,7 @@ export const CONTAINER_MAX_OUTPUT_SIZE = parseInt( process.env.CONTAINER_MAX_OUTPUT_SIZE || '10485760', 10, ); // 10MB default -export const ONECLI_URL = - process.env.ONECLI_URL || envConfig.ONECLI_URL; +export const ONECLI_URL = process.env.ONECLI_URL || envConfig.ONECLI_URL; export const MAX_MESSAGES_PER_PROMPT = Math.max( 1, parseInt(process.env.MAX_MESSAGES_PER_PROMPT || '10', 10) || 10,