Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariano Goldman committed Jun 14, 2024
1 parent ed4f204 commit 32d9a04
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/client/ContentClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,7 @@ export function createContentClient(options: ClientOptions): ContentClient {
const areWeRunningInNode = isNode()

const fileSizesManifest: Record<string, number> = Object.fromEntries(
Array.from(deployData.files, ([key, value]) => [key, value.byteLength]).filter(
([key]) => key !== deployData.entityId
)
Array.from(deployData.files, ([key, value]) => [key, value.byteLength])
)
const formData = new FormData()
formData.append('entityId', deployData.entityId)
Expand Down

0 comments on commit 32d9a04

Please sign in to comment.