fix: add parantheses, invoke unixNow
All checks were successful
Release to Staging / build_and_release (push) Successful in 1m15s

This commit is contained in:
enes 2024-08-20 17:37:32 +02:00
parent c3a39157ff
commit 07d25ebbd2

View File

@ -599,7 +599,7 @@ export const CreatePage = () => {
if (!arraybuffer) return null
return new File([new Blob([arraybuffer])], `${unixNow}.sigit.zip`, {
return new File([new Blob([arraybuffer])], `${unixNow()}.sigit.zip`, {
type: 'application/zip'
})
}