fix(upgrade-plans): adjust minimum seat value logic and enhance HubSpot widget dark mode styles

- Updated the minimum seat value logic in the upgrade plans component to allow the current seat count.
- Added CSS overrides for the HubSpot widget to ensure proper display in dark mode, removing unwanted backgrounds and shadows.
This commit is contained in:
chamikaJ
2025-07-23 13:24:58 +05:30
parent 4887383dc4
commit 9946c9a00e
2 changed files with 40 additions and 1 deletions

View File

@@ -70,7 +70,7 @@ const UpgradePlans = () => {
const step = 5;
const maxSeats = 90;
const minValue = currentSeats + 1;
const minValue = currentSeats;
const options: { value: number; disabled: boolean }[] = [];
// Always show 1-5, but disable if less than minValue