fix: add files and marked to sign page exports #226

Merged
b merged 5 commits from fixes-10-11 into staging 2024-10-14 09:01:42 +00:00
Showing only changes of commit cc382f0726 - Show all commits

View File

@ -536,7 +536,11 @@ export const SignPage = () => {
setIsLoading(true)
const arrayBuffer = await decrypt(selectedFile)
if (!arrayBuffer) return
if (!arrayBuffer) {
setIsLoading(false)
toast.error('Error decrypting file')
return
}
handleDecryptedArrayBuffer(arrayBuffer)
}