chore: quick fix
All checks were successful
Release / build_and_release (push) Successful in 1m5s

This commit is contained in:
SwiftHawk 2024-05-08 19:01:31 +05:00
parent 3d980ca2e7
commit 1add2efd14
2 changed files with 2 additions and 0 deletions

View File

@ -265,6 +265,7 @@ export const HomePage = () => {
}) })
.catch((err) => { .catch((err) => {
console.log('err in upload:>> ', err) console.log('err in upload:>> ', err)
setIsLoading(false)
toast.error(err.message || 'Error occurred in uploading zip file') toast.error(err.message || 'Error occurred in uploading zip file')
return null return null
}) })

View File

@ -221,6 +221,7 @@ export const SignDocument = () => {
}) })
.catch((err) => { .catch((err) => {
console.log('err in upload:>> ', err) console.log('err in upload:>> ', err)
setIsLoading(false)
toast.error(err.message || 'Error occurred in uploading zip file') toast.error(err.message || 'Error occurred in uploading zip file')
return null return null
}) })