From 4f1437e48a3f9cd3277cade92fdd69e5495456d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Gonz=C3=A1lez=20Marcos?= Date: Fri, 30 Jan 2026 11:43:20 +0100 Subject: [PATCH 1/3] feat: change 'Ask' button below question prompt --- .../src/modules/harvey/components/ControlPanel.tsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/frontend/src/modules/harvey/components/ControlPanel.tsx b/frontend/src/modules/harvey/components/ControlPanel.tsx index e2db4dc..97974e5 100644 --- a/frontend/src/modules/harvey/components/ControlPanel.tsx +++ b/frontend/src/modules/harvey/components/ControlPanel.tsx @@ -74,7 +74,11 @@ function ControlPanel({ placeholder="Which is the best available subscription for a team of five users?" fullWidth /> - + + + - - - - ); } From 79c644262361af5f75283af90cbd4918fab22a2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Gonz=C3=A1lez=20Marcos?= Date: Fri, 30 Jan 2026 11:48:24 +0100 Subject: [PATCH 2/3] chore: remove unused Typography component --- frontend/src/modules/harvey/components/SearchPricings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/modules/harvey/components/SearchPricings.tsx b/frontend/src/modules/harvey/components/SearchPricings.tsx index ba323c7..bdaf1a7 100644 --- a/frontend/src/modules/harvey/components/SearchPricings.tsx +++ b/frontend/src/modules/harvey/components/SearchPricings.tsx @@ -1,5 +1,5 @@ import { usePricings } from '../hooks/usePricings'; -import { Box, Skeleton, Pagination, TextField, Typography, Chip } from '@mui/material'; +import { Box, Skeleton, Pagination, TextField, Chip } from '@mui/material'; import { useState } from 'react'; import { SphereContextItemInput } from '../types/types'; import PricingsList from './PricingList'; From 8082129e5fc560f74d9261d05da657df115ca720 Mon Sep 17 00:00:00 2001 From: Alex-GF Date: Mon, 2 Feb 2026 10:05:31 +0100 Subject: [PATCH 3/3] fix: management of zombie processes --- docker/production/docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/production/docker-compose.yml b/docker/production/docker-compose.yml index 84147be..fed6c00 100644 --- a/docker/production/docker-compose.yml +++ b/docker/production/docker-compose.yml @@ -43,6 +43,7 @@ services: analysis-engine: image: aleexgf/pricing-analysis-engine:main container_name: pricing-analysis-engine + init: true ports: - "8002:3000" environment: @@ -67,6 +68,7 @@ services: a-mint: image: aleexgf/a-mint:main container_name: a-mint + init: true ports: - "8001:8000" env_file: .env