Skip to content

Commit 1fd637b

Browse files
committed
Added missing ‘type’ and updated trigger package
1 parent 040c27e commit 1fd637b

4 files changed

Lines changed: 148 additions & 2246 deletions

File tree

claude-agent-github-wiki/app/api/analyze-repo/route.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { tasks } from "@trigger.dev/sdk";
2-
import { analyzeRepo } from "@/trigger/analyze-repo";
2+
import type { analyzeRepo } from "@/trigger/analyze-repo";
33
import { NextRequest, NextResponse } from "next/server";
44

55
export async function POST(request: NextRequest) {
@@ -51,4 +51,4 @@ export async function POST(request: NextRequest) {
5151
{ status: 500 },
5252
);
5353
}
54-
}
54+
}

claude-agent-github-wiki/app/response/[runId]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
XCircle,
2121
} from "lucide-react";
2222
import { agentStream } from "@/trigger/agent-stream";
23-
import { analyzeRepo } from "@/trigger/analyze-repo";
23+
import type { analyzeRepo } from "@/trigger/analyze-repo";
2424
import { useState } from "react";
2525
import ReactMarkdown from "react-markdown";
2626

0 commit comments

Comments
 (0)