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.
2 parents 22a67fe + 35c75dd commit caf5a39Copy full SHA for caf5a39
composables/project_manager.js
@@ -28,8 +28,7 @@ export function useProjectManager() {
28
throw new Error(`Export failed: ${response.statusText}`)
29
}
30
const blob = await response.blob()
31
- const filename =
32
- response.headers.get("new-file-name")
+ const filename = response.headers.get("new-file-name")
33
const urlObject = URL.createObjectURL(blob)
34
const a = document.createElement("a")
35
a.href = urlObject
@@ -63,4 +62,4 @@ export function useProjectManager() {
63
62
64
65
return { exportProject, importProjectFile }
66
-}
+}
0 commit comments