Skip to content

Commit 2e86f69

Browse files
committed
Merge branch 'parent-image-updates' of https://github.com/code-kern-ai/refinery-ui into parent-image-updates
2 parents 46da711 + 289dced commit 2e86f69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/base/s3-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export function downloadFile(credentialBlock: any, isStringData: boolean = true)
7878
} else {
7979
//new sdk can return readableStream or blob
8080
if (bodyContents instanceof ReadableStream) {
81-
bodyContents.transformToByteArray().then((data) => {
81+
bodyContents.transformToByteArray().then((data: any) => {
8282
subscriber.next(new Blob([data]));
8383
})
8484
}

0 commit comments

Comments
 (0)