Skip to content

Commit

Permalink
fix(upload) simplify condition in UploadExternalFormatFileForm
Browse files Browse the repository at this point in the history
Signed-off-by: David Edler <[email protected]>
  • Loading branch information
edlerd committed Nov 15, 2024
1 parent 34947c2 commit f8046d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/instances/forms/UploadExternalFormatFileForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const UploadExternalFormatFileForm: FC<Props> = ({
)
.then((operation) => {
const operationId = operation.metadata.id;
const operationSecret = operation.metadata?.metadata?.fs;
const operationSecret = operation.metadata.metadata?.fs;
const instanceName = getInstanceName(operation.metadata);

// establish websocket connection based on the instance creation operation
Expand Down

0 comments on commit f8046d4

Please sign in to comment.