diff --git a/src/sentry/seer/autofix/utils.py b/src/sentry/seer/autofix/utils.py index 8ac05e2efa1eba..fba791d6413418 100644 --- a/src/sentry/seer/autofix/utils.py +++ b/src/sentry/seer/autofix/utils.py @@ -389,13 +389,12 @@ def validate(self, data): def default_seer_project_preference(project: Project) -> SeerProjectPreference: - stopping_point, handoff = get_org_default_seer_automation_handoff(project.organization) return SeerProjectPreference( organization_id=project.organization.id, project_id=project.id, repositories=[], - automated_run_stopping_point=stopping_point, - automation_handoff=handoff, + automated_run_stopping_point=AutofixStoppingPoint.CODE_CHANGES.value, + automation_handoff=None, )