fix: added missing error handling for fs.exists
This commit is contained in:
parent
bf23629905
commit
77c0d57770
1 changed files with 2 additions and 2 deletions
|
|
@ -93,7 +93,7 @@ const Store: Process = {
|
|||
)
|
||||
// @ts-expect-error
|
||||
.appendTo(repoDiv)
|
||||
})
|
||||
}).catch(e => console.error(e))
|
||||
})
|
||||
})
|
||||
.catch(e => console.error(e))
|
||||
|
|
@ -186,7 +186,7 @@ const Store: Process = {
|
|||
)
|
||||
)
|
||||
.appendTo(repoDiv)
|
||||
})
|
||||
}).catch(e => console.error(e))
|
||||
})
|
||||
})
|
||||
.catch(e => console.error(e))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue