Skip to content

Commit 5f739ee

Browse files
committed
Removed ts-ignore and added types
1 parent fccba7d commit 5f739ee

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/webapp/app/components/helpContent/HelpContentText.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,7 @@ export function HowToSetupYourProject() {
7676
"rgb(217 70 239)",
7777
],
7878
};
79-
// @ts-ignore
80-
function randomInRange(min, max) {
79+
function randomInRange(min: number, max: number): number {
8180
return Math.random() * (max - min) + min;
8281
}
8382
// @ts-ignore

0 commit comments

Comments
 (0)