()
| 40 | }); |
| 41 | }, [oauthEnabled]); |
| 42 | function goToNextStep() { |
| 43 | if (currentStepIndex < steps.length - 1) { |
| 44 | const nextIndex = currentStepIndex + 1; |
| 45 | setCurrentStepIndex(nextIndex); |
| 46 | logEvent('tengu_onboarding_step', { |
| 47 | oauthEnabled, |
| 48 | stepId: steps[nextIndex]?.id as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS |
| 49 | }); |
| 50 | } else { |
| 51 | onDone(); |
| 52 | } |
| 53 | } |
| 54 | function handleThemeSelection(newTheme: ThemeSetting) { |
| 55 | setTheme(newTheme); |
| 56 | goToNextStep(); |
no test coverage detected