Skip to content

Commit c7ba807

Browse files
Parent Image Updates (#81)
* ci: parent image updates * chore: update submodules * Build fix * chore: update submodules --------- Co-authored-by: Lina <[email protected]>
1 parent 5ab9d5d commit c7ba807

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM kernai/refinery-parent-images:v1.23.0-next
1+
FROM kernai/refinery-parent-images:v1.24.0-next
22

33
WORKDIR /app
44
COPY package*.json /app/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"eslint-config-next": "15.0.3",
3030
"focus-visible": "^5.2.0",
3131
"lodash.debounce": "^4.0.8",
32-
"next": "14.2.30",
32+
"next": "14.2.32",
3333
"postcss-focus-visible": "^6.0.4",
3434
"react": "18.2.0",
3535
"react-chartjs-2": "^5.2.0",

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)