diff --git a/src/storage/index.ts b/src/storage/index.ts index 7a43884d7..7eca112fd 100644 --- a/src/storage/index.ts +++ b/src/storage/index.ts @@ -784,7 +784,8 @@ export async function putFile( uploadFn = async (hubConfig: GaiaHubConfig) => { const writeResponse = (await Promise.all([ - uploadToGaiaHub(path, contentData, hubConfig, contentType, newFile, etag, opt.dangerouslyIgnoreEtag), + uploadToGaiaHub(path, contentData, hubConfig, contentType, newFile, etag, + opt.dangerouslyIgnoreEtag), uploadToGaiaHub(`${path}${SIGNATURE_FILE_SUFFIX}`, signatureContent, hubConfig, 'application/json') ]))[0]