diff --git a/src/app/components/BudgetControl/index.tsx b/src/app/components/BudgetControl/index.tsx index 50a7ddd151..bf684228da 100644 --- a/src/app/components/BudgetControl/index.tsx +++ b/src/app/components/BudgetControl/index.tsx @@ -10,6 +10,7 @@ type Props = { budget: string; onBudgetChange: ChangeEventHandler; fiatAmount: string; + disabled?: boolean; }; function BudgetControl({ @@ -18,6 +19,7 @@ function BudgetControl({ budget, onBudgetChange, fiatAmount, + disabled = false, }: Props) { const { t } = useTranslation("components", { keyPrefix: "budget_control", @@ -27,12 +29,13 @@ function BudgetControl({ return (
-
+