Skip to content

Commit baafb02

Browse files
fix: show onboarding wizard on gateway method failure (new install fallback)
1 parent d8105be commit baafb02

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ui/src/ui/controllers/onboarding.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,10 @@ export async function checkOnboardingStatus(
9898
state.step = "provider";
9999
}
100100
} catch {
101-
// Gateway may not support onboarding.status yet — skip wizard
101+
// Gateway may not support onboarding.status yet — show wizard
102+
// so new users always get guided setup. They can close it.
103+
state.open = true;
104+
state.step = "provider";
102105
}
103106
}
104107

0 commit comments

Comments
 (0)