diff --git a/app/common/Features.ts b/app/common/Features.ts index 89b3e215..73fe1293 100644 --- a/app/common/Features.ts +++ b/app/common/Features.ts @@ -83,7 +83,7 @@ export const displayPlanName: { [key: string]: string } = { [PERSONAL_LEGACY_PLAN]: 'Free Personal (Legacy)', [PERSONAL_FREE_PLAN]: 'Free Personal', [TEAM_FREE_PLAN]: 'Team Free', - [TEAM_PLAN]: 'Team' + [TEAM_PLAN]: 'Pro' } as const; // Returns true if `planName` is for a personal product. diff --git a/test/nbrowser/gristUtils.ts b/test/nbrowser/gristUtils.ts index 36285ac5..924668ea 100644 --- a/test/nbrowser/gristUtils.ts +++ b/test/nbrowser/gristUtils.ts @@ -2223,7 +2223,7 @@ export async function assertHeaderFillColor(col: string, color: string) { export function openCellColorPicker(nr?: number) { if (nr !== undefined) { return driver - .find(`.test-widget-style-conditional-rule-${nr} .test-cell-color-select .test-color-select`) + .find(`.test-widget-style-conditional-rule-${nr} .test-color-select`) .click(); } return driver.find('.test-cell-color-select .test-color-select').click();