From 269bff49d5f10278d82ec5341d06f7b5b86268fd Mon Sep 17 00:00:00 2001 From: Reed Rosenbluth Date: Wed, 8 Jul 2020 13:09:54 -0600 Subject: [PATCH] fix: lint --- src/storage/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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]