fix: show other file types in the middle section (create, sign, verify) #163

Merged
enes merged 5 commits from 138-other-file-types into staging 2024-08-26 12:00:33 +00:00
2 changed files with 13 additions and 6 deletions
Showing only changes of commit 86095cba5c - Show all commits

View File

@ -416,8 +416,11 @@ export const SignPage = () => {
)
if (arrayBuffer) {
files[fileName] = await convertToPdfFile(arrayBuffer, fileName)
try {
files[fileName] = await convertToPdfFile(arrayBuffer, fileName)
} catch (error) {
console.error('Not a .pdf file:', error)
}
const hash = await getHash(arrayBuffer)
if (hash) {
fileHashes[fileName] = hash

View File

@ -246,10 +246,14 @@ export const VerifyPage = () => {
)
if (arrayBuffer) {
files[fileName] = await convertToPdfFile(
arrayBuffer,
fileName!
)
try {
files[fileName] = await convertToPdfFile(
arrayBuffer,
fileName!
)
} catch (error) {
console.error('Not a .pdf file:', error)
}
const hash = await getHash(arrayBuffer)
if (hash) {