fix: remove text label gap (#834)

This commit is contained in:
Judicael 2022-07-21 18:46:54 +03:00 committed by GitHub
parent cad534812b
commit bdd63443e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1063,7 +1063,7 @@ export class TLDR {
return text
.replace(TLDR.fixNewLines, '\n')
.split('\n')
.map((x) => x || ' ')
.map((x) => x || '')
.join('\n')
}