Skip to content

Commit a6d93d4

Browse files
committed
fix: build errors
1 parent 58b3cad commit a6d93d4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

client/src/features/project/components/cloudStorage/CloudStorageModal.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,8 @@ export default function CloudStorageModal({
389389
storageDetails.sourcePath &&
390390
storageDetails.options &&
391391
Object.values(storageDetails.options).every((v) => v)
392-
));
392+
)) ||
393+
false;
393394

394395
const isAddResultLoading = addResult.isLoading || addResultV2.isLoading;
395396
const isModifyResultLoading =

client/src/features/project/components/cloudStorage/cloudStorageModalComponents.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ export function AddCloudStorageBodyContent({
122122
storageDetails,
123123
storageId,
124124
success,
125-
disableContinueButton,
126125
}: AddCloudStorageBodyContentProps) {
127126
if (redraw) return <Loader />;
128127
if (success)
@@ -144,7 +143,6 @@ export function AddCloudStorageBodyContent({
144143
setStorage={setStorageDetailsSafe}
145144
state={state}
146145
storage={storageDetails}
147-
disableContinueButton={disableContinueButton}
148146
/>
149147
);
150148
}

0 commit comments

Comments
 (0)