Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Nov 24, 2023
1 parent 2dcc22a commit 15c010a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/readme-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function parseTexts(raw) {
texts[currentKey] = texts[currentKey].trim();
}
currentKey = line.trim();
texts[currentKey] ??= '';
if (!texts[currentKey]) texts[currentKey] = '';
continue;
}
if (!currentKey) continue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,10 @@ import { EventLogService } from '../event-log.service';
import {
asyncScheduler,
debounceTime,
delay,
filter,
firstValueFrom,
map,
of,
pairwise,
skipUntil,
startWith,
tap,
throttleTime,
Expand Down

0 comments on commit 15c010a

Please sign in to comment.