Fix tabbing

This commit is contained in:
Dominic Ferrando
2026-06-14 13:14:01 -04:00
parent 42f47c8601
commit 05dc26adb5
31 changed files with 9137 additions and 8508 deletions
+1 -2
View File
@@ -6,7 +6,7 @@ export default {
switch (request.method) {
case 'GET':
const listResponse = await env.media.list({ prefix, limit: 1000 });
const keys = listResponse.objects.map(o => o.key);
const keys = listResponse.objects.map((o) => o.key);
const headers = new Headers();
headers.set('Content-Type', 'application/json');
@@ -24,6 +24,5 @@ export default {
},
});
}
},
} satisfies ExportedHandler<Env>;