Skip to content

Commit

Permalink
fix: bad isserver check
Browse files Browse the repository at this point in the history
  • Loading branch information
eddieferrer committed Sep 13, 2023
1 parent aeae5bb commit d287a4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/BorrowerProfile/BorrowerBusinessDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export default {
validatedUrl = new URL(validatedUrl);
return validatedUrl.href;
} catch (err) {
if (!this.$$isServer) {
if (!this.$isServer) {
Sentry.withScope(scope => {
scope.setTag('borrower_profile', 'social_link');
Sentry.captureMessage(`Invalid url ${value} for ${this.loanId}`);
Expand Down

0 comments on commit d287a4f

Please sign in to comment.