Skip to content

Commit

Permalink
fix: use correct IANA media type
Browse files Browse the repository at this point in the history
see: web3-storage/web3.storage#1206

License: MIT
Signed-off-by: Oli Evans <[email protected]>
  • Loading branch information
olizilla committed Feb 6, 2023
1 parent 7bee838 commit f0a3b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/react/w3console/src/share.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export async function toCarBlob (delegation: Delegation): Promise<Blob> {
carParts.push(chunk)
}
const car = new Blob(carParts, {
type: 'application/vnd.ipfs.car'
type: 'application/vnd.ipld.car'
})
return car
}
Expand Down

0 comments on commit f0a3b7d

Please sign in to comment.