diff --git a/apps/app/src/app/[locale]/(app)/setup/onboarding/components/OnboardingForm.tsx b/apps/app/src/app/[locale]/(app)/setup/onboarding/components/OnboardingForm.tsx index 8394ffa79a..c42847ec52 100644 --- a/apps/app/src/app/[locale]/(app)/setup/onboarding/components/OnboardingForm.tsx +++ b/apps/app/src/app/[locale]/(app)/setup/onboarding/components/OnboardingForm.tsx @@ -49,6 +49,7 @@ import { toast } from "sonner"; import { motion, AnimatePresence } from "framer-motion"; import { LogoSpinner } from "@/components/logo-spinner"; import { SelectPills } from "@comp/ui/select-pills"; +import { Textarea } from "@comp/ui/textarea"; type OnboardingFormFields = Partial & { [K in keyof CompanyDetails as `${K}Other`]?: string; @@ -122,6 +123,7 @@ export function OnboardingForm() { onboardOrganizationAction.execute({ legalName: answers.legalName || "", website: answers.website || "", + describe: answers.describe || "", industry: answers.industry || "", teamSize: answers.teamSize || "", devices: answers.devices || "", @@ -188,6 +190,18 @@ export function OnboardingForm() { const isLastStep = stepIndex === steps.length - 1; function renderStepInput() { + if (step.key === "describe") { + return ( +