Skip to content

Commit

Permalink
fix: removed br from fee selector
Browse files Browse the repository at this point in the history
  • Loading branch information
bradleySuira committed Feb 2, 2021
1 parent 594cbc4 commit 30e0c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/FeeSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default {
content += `<br />${totalFiat} USD`
} else {
const { unit } = cryptoassets[this.asset].fees
content += `<br />${this.fees[name].fee} ${unit}`
content += `${this.fees[name].fee} ${unit}`
}
return `${content}</div>`
Expand Down

0 comments on commit 30e0c73

Please sign in to comment.