Skip to content

Commit

Permalink
Fix indentation in price method of main class
Browse files Browse the repository at this point in the history
  • Loading branch information
ain committed Nov 1, 2023
1 parent 06f3db4 commit 4a1fd67
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/smartbanner.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ export default class SmartBanner {
}

get price() {
if (this.options.price && this.options.price !== '') {
return this.options.price;
} else {
return '';
}
if (this.options.price && this.options.price !== '') {
return this.options.price;
} else {
return '';
}
}

get icon() {
Expand Down

0 comments on commit 4a1fd67

Please sign in to comment.