Skip to content

Commit 3469bd4

Browse files
fix(ios): advance onboarding step after QR scan
handleScannedLink does not set self.step = .connect after scanning a QR code from the welcome step. The scanner sheet dismisses and the UI returns to the welcome screen instead of showing connection progress. The sibling handleScannedSetupCode path correctly advances the step; this aligns the QR scan path. Fixes #98297 Co-authored-by: Cursor <[email protected]>
1 parent 5e572dc commit 3469bd4

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

apps/ios/Sources/Onboarding/OnboardingWizardView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -730,6 +730,7 @@ extension OnboardingWizardView {
730730
self.showQRScanner = false
731731
self.connectMessage = "Connecting via QR code..."
732732
self.statusLine = "QR loaded. Connecting to \(link.host):\(link.port)..."
733+
self.step = .connect
733734
Task { await self.connectManual() }
734735
}
735736

0 commit comments

Comments
 (0)