We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e09c03 commit b6ce189Copy full SHA for b6ce189
src/composables/useProcessing.ts
@@ -284,10 +284,7 @@ export default function useProcessing() {
284
try {
285
isProjectLoading.value = true
286
const response = await fetch(`${apiBaseUrl}projects/${id}`, {
287
- headers: {
288
- 'Content-Type': 'application/json',
289
- Authorization: `Bearer ${token}`,
290
- },
+ headers: createHeaders()
291
})
292
const project = await response.json()
293
const blob = await fetch(project.results.polygons)
0 commit comments