Add existing account sign-in link and update Welcome link-to-connections
cgen-f0c8ee3b154d43cfb3d11dfa973bce2d
This commit is contained in:
parent
5d4b4fa21c
commit
88f08fcd68
1 changed files with 3 additions and 0 deletions
|
|
@ -74,6 +74,9 @@ const initialData: OnboardingData = {
|
|||
};
|
||||
|
||||
export default function Onboarding() {
|
||||
// Helper: link to existing account to avoid accidental new account creation
|
||||
// Show a small banner that sends users to login with a next param back to onboarding
|
||||
const signInExistingHref = "/login?next=/onboarding";
|
||||
const [currentStep, setCurrentStep] = useState(0);
|
||||
const [data, setData] = useState<OnboardingData>(initialData);
|
||||
const [isLoading, setIsLoading] = useState(true);
|
||||
|
|
|
|||
Loading…
Reference in a new issue