feat: ui isDisabled field added in type BaseRepoUrlPickerProps

Signed-off-by: Nikunj Hudka <nikunjhudka123@gmail.com>
This commit is contained in:
Nikunj Hudka
2025-02-24 00:15:05 -04:00
parent 26628842cc
commit e8c0e768f7
@@ -32,4 +32,5 @@ export type BaseRepoUrlPickerProps<T extends {} = {}> = T & {
onChange: (state: RepoUrlPickerState) => void;
state: RepoUrlPickerState;
rawErrors: string[];
isDisabled?: boolean;
};