Skip to content

Commit

Permalink
Fix issues found by Biome
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmaj committed Jun 5, 2024
1 parent b4f3756 commit bfdcb2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-clock/src/Clock.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ describe('Clock', () => {
throw new Error('Could not parse transform');
}

return parseFloat(deg);
return Number.parseFloat(deg);
}

function getAngle(hand: HTMLElement) {
Expand Down

0 comments on commit bfdcb2a

Please sign in to comment.