Skip to content

Commit

Permalink
Merge pull request #4962 from kiva/isserver_fix
Browse files Browse the repository at this point in the history
fix: bad isserver check
  • Loading branch information
eddieferrer authored Sep 13, 2023
2 parents aeae5bb + d287a4f commit bd6c9bc
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 bd6c9bc

Please sign in to comment.