feat: ui isDisabled added in type BaseRepoBranchPickerProps

Signed-off-by: Nikunj Hudka <nikunjhudka123@gmail.com>
This commit is contained in:
Nikunj Hudka
2025-02-24 00:14:31 -04:00
parent f4f315daf7
commit 26628842cc
@@ -26,5 +26,6 @@ export type BaseRepoBranchPickerProps<T extends {} = {}> = T & {
onChange: (state: RepoBranchPickerState) => void;
state: RepoBranchPickerState;
rawErrors: string[];
isDisabled?: boolean;
required?: boolean;
};