Skip to content

Commit

Permalink
Make linter happy again
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmaj committed Sep 30, 2024
1 parent d760f43 commit df60d3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ export default class Ink {
this.log = logUpdate.create(options.stdout);
this.throttledLog = options.debug
? this.log
: throttle(this.log, undefined, {
: (throttle(this.log, undefined, {
leading: true,
trailing: true,
}) as unknown as LogUpdate;
}) as unknown as LogUpdate);

// Ignore last render after unmounting a tree to prevent empty output before exit
this.isUnmounted = false;
Expand Down

0 comments on commit df60d3c

Please sign in to comment.