Skip to content

Commit

Permalink
fixed empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Der-Floh committed May 29, 2024
1 parent 06a2b29 commit 006ef1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ function loadScreens(lines) {

let newLine = line.replaceAll('\n', '').replaceAll('\r', '');
if (!newLine || newLine.length === 0)
newLine = ' ';
newLine = newLine.replaceAll(' ', '⠀');
newLine = '';
// newLine = newLine.replaceAll(' ', '⠀');
sb.push(newLine);

if (index === 13) {
Expand Down

0 comments on commit 006ef1f

Please sign in to comment.