Skip to content

fix(seer): Fix Seer onboarding so that users get to the Code-Review step first when its needed#108183

Merged
ryan953 merged 1 commit intomasterfrom
ryan953/fix-seer-onboarding-order
Feb 12, 2026
Merged

fix(seer): Fix Seer onboarding so that users get to the Code-Review step first when its needed#108183
ryan953 merged 1 commit intomasterfrom
ryan953/fix-seer-onboarding-order

Conversation

@ryan953
Copy link
Member

@ryan953 ryan953 commented Feb 12, 2026

The order on the screen has Code Review before RCA, so we should return it first if that step is needed

SCR-20260212-mogh

I broke this last week with #107703

@ryan953 ryan953 requested a review from a team as a code owner February 12, 2026 22:06
@github-actions github-actions bot added the Scope: Frontend Automatically applied to PRs that change frontend components label Feb 12, 2026
@ryan953 ryan953 requested a review from billyvg February 12, 2026 22:07
Copy link
Contributor

@cursor cursor bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.

if (hasSupportedScmIntegration) {
if (isAutofixEnabled && isCodeReviewEnabled) {
initialStep = Steps.WRAP_UP; // Next steps
} else if (!isAutofixEnabled || shouldShowConfigReminder) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldShowConfigReminder is now dead code after reordering

Low Severity

After the reorder, shouldShowConfigReminder can never be true when the third branch is reached, because reaching it requires isCodeReviewEnabled to be true (branch 2 wasn't taken), but shouldShowConfigReminder requires !isCodeReviewEnabled. In fact, the entire condition on branch 3 (!isAutofixEnabled || shouldShowConfigReminder) is always true when reached, so it could just be an else. The shouldShowConfigReminder variable and conditional are now misleading dead code.

Additional Locations (1)

Fix in Cursor Fix in Web

@ryan953 ryan953 merged commit c316802 into master Feb 12, 2026
63 checks passed
@ryan953 ryan953 deleted the ryan953/fix-seer-onboarding-order branch February 12, 2026 22:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Scope: Frontend Automatically applied to PRs that change frontend components

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants