Skip to content

Commit fb3a212

Browse files
committed
fix(review-agent): satisfy diff response typing
1 parent 0fe45d3 commit fb3a212

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/web/src/features/agents/review-agent/nodes/githubPrParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const githubPrParser = async (octokit: Octokit, pullRequest: GitHubPullRe
2323
},
2424
});
2525

26-
parsedDiff = parse(diff.data as string);
26+
parsedDiff = parse(diff.data as unknown as string);
2727
} catch (error) {
2828
logger.error("Error fetching diff: ", error);
2929
throw error;

0 commit comments

Comments
 (0)