diff --git a/src/pages/task/actionButtons/relevantCommits/index.tsx b/src/pages/task/actionButtons/relevantCommits/index.tsx index a1ca72e888..57d0126158 100644 --- a/src/pages/task/actionButtons/relevantCommits/index.tsx +++ b/src/pages/task/actionButtons/relevantCommits/index.tsx @@ -91,6 +91,7 @@ export const RelevantCommits: React.FC = ({ taskId }) => { // The breaking commit is the first failing commit after the last passing commit. // The skip order number should be the last passing commit's order number + 1. // We use + 2 because internally the query does a less than comparison. + // https://github.com/ZackarySantana/spruce/blob/7018fcbce0be9db310d17c40fe948aff597fcd15/src/pages/task/actionButtons/relevantCommits/index.tsx#L93 const { data: breakingTaskData, loading: breakingLoading } = useQuery< LastMainlineCommitQuery, LastMainlineCommitQueryVariables