File tree 2 files changed +2
-3
lines changed
client/src/features/project/components/cloudStorage
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -389,7 +389,8 @@ export default function CloudStorageModal({
389
389
storageDetails . sourcePath &&
390
390
storageDetails . options &&
391
391
Object . values ( storageDetails . options ) . every ( ( v ) => v )
392
- ) ) ;
392
+ ) ) ||
393
+ false ;
393
394
394
395
const isAddResultLoading = addResult . isLoading || addResultV2 . isLoading ;
395
396
const isModifyResultLoading =
Original file line number Diff line number Diff line change @@ -122,7 +122,6 @@ export function AddCloudStorageBodyContent({
122
122
storageDetails,
123
123
storageId,
124
124
success,
125
- disableContinueButton,
126
125
} : AddCloudStorageBodyContentProps ) {
127
126
if ( redraw ) return < Loader /> ;
128
127
if ( success )
@@ -144,7 +143,6 @@ export function AddCloudStorageBodyContent({
144
143
setStorage = { setStorageDetailsSafe }
145
144
state = { state }
146
145
storage = { storageDetails }
147
- disableContinueButton = { disableContinueButton }
148
146
/>
149
147
) ;
150
148
}
You can’t perform that action at this time.
0 commit comments