diff --git a/packages/desktop-client/src/components/budget/BalanceWithCarryover.tsx b/packages/desktop-client/src/components/budget/BalanceWithCarryover.tsx index 4cbdb09f754..f298d08e83f 100644 --- a/packages/desktop-client/src/components/budget/BalanceWithCarryover.tsx +++ b/packages/desktop-client/src/components/budget/BalanceWithCarryover.tsx @@ -40,9 +40,8 @@ export default function BalanceWithCarryover({ {carryoverValue && ( diff --git a/packages/desktop-client/src/components/spreadsheet/CellValue.tsx b/packages/desktop-client/src/components/spreadsheet/CellValue.tsx index e71f33cf12d..6c1e725826c 100644 --- a/packages/desktop-client/src/components/spreadsheet/CellValue.tsx +++ b/packages/desktop-client/src/components/spreadsheet/CellValue.tsx @@ -15,18 +15,16 @@ import { type Binding } from '.'; type CellValueProps = { binding: string | Binding; - goalStatus?: boolean; type?: string; formatter?: (value) => ReactNode; style?: CSSProperties; - getStyle?: (value, status) => CSSProperties; + getStyle?: (value) => CSSProperties; privacyFilter?: ConditionalPrivacyFilterProps['privacyFilter']; ['data-testid']?: string; }; function CellValue({ binding, - goalStatus, type, formatter, style, @@ -53,7 +51,7 @@ function CellValue({ style={{ ...(type === 'financial' && styles.tnum), ...style, - ...(getStyle && getStyle(sheetValue, goalStatus)), + ...(getStyle && getStyle(sheetValue)), }} data-testid={testId || fullSheetName} data-cellname={fullSheetName}