Skip to content

Commit

Permalink
Don't throw error when getting property data fails
Browse files Browse the repository at this point in the history
Throwing the error here prevents us from pre-populating
the fields we can get from the page
Also bump patch version
  • Loading branch information
JustWalters committed Dec 20, 2023
1 parent 6b0b195 commit d7795ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bowery-chrome-extension",
"version": "2.5.0",
"version": "2.5.1",
"description": "Chrome extension for Bowery appraisers using the Bowery Authorship Application.",
"scripts": {
"build": "node scripts/build.js",
Expand Down
2 changes: 1 addition & 1 deletion src/services/BoweryService.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class BoweryService {
} catch (error) {
// eslint-disable-next-line no-console
console.log(error)
throw error
return {}
}
}

Expand Down

0 comments on commit d7795ed

Please sign in to comment.