Skip to content

Commit 922e1e1

Browse files
committed
Fixed: pnpm check-types errors
1 parent 33a0a20 commit 922e1e1

File tree

8 files changed

+1933
-3364
lines changed

8 files changed

+1933
-3364
lines changed

apps/vscode-e2e/src/types/global.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import type { RooCodeAPI } from "@roo-code/types"
22

33
declare global {
4-
// eslint-disable-next-line no-var
54
var api: RooCodeAPI
65
}
76

apps/web-roo-code/src/components/homepage/features.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export function Features() {
8787
y: 0,
8888
transition: {
8989
duration: 0.6,
90-
ease: [0.21, 0.45, 0.27, 0.9],
90+
ease: [0.21, 0.45, 0.27, 0.9] as const,
9191
},
9292
},
9393
}
@@ -100,7 +100,7 @@ export function Features() {
100100
opacity: 1,
101101
transition: {
102102
duration: 1.2,
103-
ease: "easeOut",
103+
ease: "easeOut" as const,
104104
},
105105
},
106106
}

apps/web-roo-code/src/components/homepage/install-section.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function InstallSection({ downloads }: InstallSectionProps) {
1717
opacity: 1,
1818
transition: {
1919
duration: 1.2,
20-
ease: "easeOut",
20+
ease: [0.25, 0.46, 0.45, 0.94] as const,
2121
},
2222
},
2323
}

apps/web-roo-code/src/components/homepage/testimonials.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function Testimonials() {
6969
y: 0,
7070
transition: {
7171
duration: 0.6,
72-
ease: [0.21, 0.45, 0.27, 0.9],
72+
ease: [0.21, 0.45, 0.27, 0.9] as const,
7373
},
7474
},
7575
}
@@ -82,7 +82,7 @@ export function Testimonials() {
8282
opacity: 1,
8383
transition: {
8484
duration: 1.2,
85-
ease: "easeOut",
85+
ease: [0.25, 0.46, 0.45, 0.94] as const,
8686
},
8787
},
8888
}

0 commit comments

Comments
 (0)