Skip to content

Commit f55ae93

Browse files
committed
fix a bunch of typecheck errors
1 parent 77af7b0 commit f55ae93

File tree

5 files changed

+176
-583
lines changed

5 files changed

+176
-583
lines changed

apps/webapp/app/services/gitHub.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ async function fetchInstallationRepositories(octokit: Octokit, installationId: n
113113

114114
for await (const { data } of iterator) {
115115
pageCount++;
116-
allRepos.push(...data);
116+
allRepos.push(...data.repositories);
117117

118118
if (maxPages && pageCount >= maxPages) {
119119
logger.warn("GitHub installation repository fetch truncated", {

apps/webapp/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
"openai": "4.33.1",
164164
"p-limit": "6.2.0",
165165
"p-map": "6.0.0",
166-
"p-retry": "4.6.1",
166+
"p-retry": "4.6.2",
167167
"parse-duration": "2.1.0",
168168
"posthog-js": "1.93.3",
169169
"posthog-node": "4.17.1",
@@ -278,7 +278,8 @@
278278
"tailwindcss": "3.4.1",
279279
"tsconfig-paths": "~3.14.1",
280280
"tsx": "~4.20.6",
281-
"vite-tsconfig-paths": "~4.0.5"
281+
"vite-tsconfig-paths": "~4.0.5",
282+
"typescript": "5.5.4"
282283
},
283284
"engines": {
284285
"node": ">=18.19.0 || >=20.6.0"

internal-packages/emails/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"zod": "3.25.76"
2121
},
2222
"devDependencies": {
23-
"@types/nodemailer": "~6.4.17",
23+
"@types/nodemailer": "6.4.17",
2424
"@types/react": "18.2.69"
2525
},
2626
"engines": {

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@
8888
"form-data@^2": "2.5.4",
8989
"form-data@^3": "3.0.4",
9090
"form-data@^4": "4.0.4",
91-
"axios@1.9.0": ">=1.12.0"
91+
"axios@1.9.0": ">=1.12.0",
92+
"socket.io-adapter@2.5.5": "2.5.4"
9293
},
9394
"onlyBuiltDependencies": [
9495
"@prisma/client"

0 commit comments

Comments
 (0)