feature/survey #86

Merged
seul merged 9 commits from feature/survey into dev 2025-07-02 10:58:25 +09:00
Showing only changes of commit 6f7f406e97 - Show all commits

View File

@ -253,7 +253,6 @@ export function useSurvey(
false,
true,
)
console.log(resp)
const blob = await resp.blob()
if (!blob || blob.size === 0) {
@ -264,7 +263,7 @@ export function useSurvey(
const url = window.URL.createObjectURL(blob)
const a = document.createElement('a')
a.href = url
a.download = `${filename}.pdf`
a.download = `${filename}`
a.click()
window.URL.revokeObjectURL(url)