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/2] 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/2] 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';