Skip to content

Commit 5842ed4

Browse files
committed
feat: add type for isReviewApp
1 parent 83008ea commit 5842ed4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/upload-assets-to-s3/src/tasks/upload-assets-to-s3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export const UploadAssetsToS3Schema = z
6363
export { UploadAssetsToS3Schema as schema }
6464

6565
export default class UploadAssetsToS3 extends Task<{ task: typeof UploadAssetsToS3Schema }> {
66-
async uploadFile(file: string, s3: S3Client, isReviewApp): Promise<void> {
66+
async uploadFile(file: string, s3: S3Client, isReviewApp: boolean): Promise<void> {
6767
const type = getFileType(file)
6868
const encoding = getFileEncoding(file)
6969
const filepath = path.join(this.options.directory, file)

0 commit comments

Comments
 (0)