diff --git a/clients/shared/src/index.ts b/clients/shared/src/index.ts index ad2502c18..403e7fa6c 100644 --- a/clients/shared/src/index.ts +++ b/clients/shared/src/index.ts @@ -178,3 +178,4 @@ export { useMarkAllNotificationsRead, usePostDeviceToken, } from "./api/notifications"; +export { usePutUsersIdOnboard } from "./api/generated/endpoints/users/users"; \ No newline at end of file diff --git a/clients/web/src/components/onboarding/InviteTeamStep.tsx b/clients/web/src/components/onboarding/InviteTeamStep.tsx index 26a155aa5..6b90fe5f0 100644 --- a/clients/web/src/components/onboarding/InviteTeamStep.tsx +++ b/clients/web/src/components/onboarding/InviteTeamStep.tsx @@ -5,11 +5,17 @@ import type { OnboardingFormData } from "./types"; type InviteTeamStepProps = { formData: OnboardingFormData; updateForm: (updates: Partial) => void; + onNext: () => void; + isSubmitting?: boolean; }; -export function InviteTeamStep({ formData, updateForm }: InviteTeamStepProps) { +export function InviteTeamStep({ + formData, + updateForm, + onNext, + isSubmitting, +}: InviteTeamStepProps) { const [invited, setInvited] = useState(false); - return (
@@ -18,7 +24,6 @@ export function InviteTeamStep({ formData, updateForm }: InviteTeamStepProps) {
{/* Logo */}
- {/* Header */}

@@ -28,7 +33,6 @@ export function InviteTeamStep({ formData, updateForm }: InviteTeamStepProps) { SelfServe is better when the whole staff is connected.

- {/* Email input */}
@@ -56,17 +60,18 @@ export function InviteTeamStep({ formData, updateForm }: InviteTeamStepProps) { You can also do this later from your settings.

- {/* Actions */}