diff --git a/src/app/(auth)/onboarding/page.tsx b/src/app/(auth)/onboarding/page.tsx index e78b750..c525304 100644 --- a/src/app/(auth)/onboarding/page.tsx +++ b/src/app/(auth)/onboarding/page.tsx @@ -6,6 +6,7 @@ import { trpc } from '@/lib/trpc/client' import { Button } from '@/components/ui/button' import { Input } from '@/components/ui/input' import { Label } from '@/components/ui/label' +import { PhoneInput } from '@/components/ui/phone-input' import { Card, CardContent, @@ -162,15 +163,15 @@ export default function OnboardingPage() {
- setPhoneNumber(e.target.value)} - placeholder="+377 12 34 56 78" + onChange={(value) => setPhoneNumber(value || '')} + defaultCountry="MC" + placeholder="Enter phone number" />

- Include country code for WhatsApp notifications + Select your country and enter your number for WhatsApp notifications