We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2f5b0c commit 7bcf8b3Copy full SHA for 7bcf8b3
src/lib/storage/StorageApi.ts
@@ -107,8 +107,6 @@ export class StorageApi {
107
if (!isBrowser()) throw new Error('No browser detected.')
108
109
const formData = new FormData()
110
- formData.append('cacheControl', '3600')
111
- formData.append('', file, file.name)
112
formData.append('', file, file.name)
113
114
const res = await fetch(`${this.url}/object/${path}`, {
@@ -143,7 +141,6 @@ export class StorageApi {
143
141
144
142
145
146
147
148
149
0 commit comments