Skip to content

Commit b8c49d9

Browse files
fix: Remove &nbsp entity from license text display just ellipsis
1 parent 5674dc2 commit b8c49d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/license.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function License() {
109109
maxWidth: '30%',
110110
cell: row => (
111111
<div className="license-text">
112-
<span>{row.text?.substr(0, 50) ?? ''}...&nbsp</span>
112+
<span>{row.text?.substr(0, 50) ?? ''}...</span>
113113
</div>
114114
),
115115
},

0 commit comments

Comments
 (0)