Skip to content

Commit

Permalink
fix: ensure useTick is enabled by default
Browse files Browse the repository at this point in the history
Signed-off-by: Trezy <[email protected]>
  • Loading branch information
trezy committed Feb 5, 2025
1 parent 92954ee commit 0f6df92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useTick.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function useTick<T>(

let context: any;

let isEnabled: boolean;
let isEnabled: boolean = true;

let priority: number | undefined;

Expand Down

0 comments on commit 0f6df92

Please sign in to comment.