Skip to content

Commit

Permalink
Fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
gagik committed Jun 11, 2024
1 parent 87d35c7 commit 52e1c98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/wait.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
////////////////////////////////////////////////////////////////////////////

export const wait = (ms: number): Promise<void> => {
return new Promise((resolve) => {
return new Promise(resolve => {
setTimeout(resolve, ms);
});
};

0 comments on commit 52e1c98

Please sign in to comment.