Skip to content

Commit

Permalink
chore: apply lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Teages committed Apr 25, 2024
1 parent 2696bcb commit 08a464a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion playground/pages/blob.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async function uploadFiles(files: File[]) {
const { completed, progress, abort } = uploadLarge(file)
const uploadingToast = toast.add({
title: `Uploading Large File...`,
title: `Uploading ${file.name}...`,
description: file.name,
color: 'sky',
timeout: 0,
Expand Down
4 changes: 2 additions & 2 deletions src/runtime/server/utils/blob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -454,8 +454,8 @@ export function proxyHubBlob(projectUrl: string, secretKey?: string): HubBlob {
}

function createMultipartUploadHandler(
hub: Pick<HubBlob, 'createMultipartUpload' | 'resumeMultipartUpload'
>): HubBlob['handleMultipartUpload'] {
hub: Pick<HubBlob, 'createMultipartUpload' | 'resumeMultipartUpload'>
): HubBlob['handleMultipartUpload'] {
const { createMultipartUpload, resumeMultipartUpload } = hub

const createHandler = async (event: H3Event) => {
Expand Down

0 comments on commit 08a464a

Please sign in to comment.