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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user