Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyoshiaki committed Dec 12, 2023
1 parent 440703a commit 02cf711
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/rtp/src/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ export const timer = {
const id = setInterval(
() => {
args[0]();
//@ts-ignore
},
...args.slice(1),
//@ts-ignore
...args.slice(1)
);
return () => clearInterval(id);
},
Expand Down

0 comments on commit 02cf711

Please sign in to comment.