diff --git a/src/components/MyAccount/Settings/AddButton.tsx b/src/components/MyAccount/Settings/AddButton.tsx index 104dd2ce..9385937a 100644 --- a/src/components/MyAccount/Settings/AddButton.tsx +++ b/src/components/MyAccount/Settings/AddButton.tsx @@ -4,11 +4,12 @@ import { forwardRef } from "react" type AddButtonProps = { inputType?: string label: string + isDisabled?: boolean onClick: () => void } const AddButton = forwardRef( - ({ inputType, label, onClick }, ref) => { + ({ inputType, label, isDisabled, onClick }, ref) => { return (