Skip to content

Commit 71d1ab9

Browse files
committed
style(storage): format with prettier
1 parent 037debb commit 71d1ab9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/core/storage-js/src/packages/StorageFileApi.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,11 @@ export default class StorageFileApi extends BaseApiClient<StorageError> {
252252

253253
return this.handleOperation(async () => {
254254
let body
255-
const options = { ...DEFAULT_FILE_OPTIONS, upsert: DEFAULT_FILE_OPTIONS.upsert, ...fileOptions }
255+
const options = {
256+
...DEFAULT_FILE_OPTIONS,
257+
upsert: DEFAULT_FILE_OPTIONS.upsert,
258+
...fileOptions,
259+
}
256260
let headers: Record<string, string> = {
257261
...this.headers,
258262
...{ 'x-upsert': String(options.upsert as boolean) },

0 commit comments

Comments
 (0)