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
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
/>
-
+
+
+
-
-
-
-
);
}
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';