From da55868ddc582402db545df98f77cf872ac99808 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 5 Dec 2025 17:15:22 +0200 Subject: [PATCH] integrate existing flow into onboarding --- src/components/contacts/screens/GetContacts.tsx | 2 +- src/components/contacts/screens/PhoneInput.tsx | 2 +- src/components/contacts/screens/VerifyNumber.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/contacts/screens/GetContacts.tsx b/src/components/contacts/screens/GetContacts.tsx index dccf82bc8d..e7de3bac71 100644 --- a/src/components/contacts/screens/GetContacts.tsx +++ b/src/components/contacts/screens/GetContacts.tsx @@ -25,7 +25,7 @@ export function GetContacts({ onCancel, }: { state: Extract - dispatch: React.Dispatch + dispatch: React.ActionDispatch<[Action]> onCancel: () => void }) { const {_} = useLingui() diff --git a/src/components/contacts/screens/PhoneInput.tsx b/src/components/contacts/screens/PhoneInput.tsx index 6e6dbfda3d..352ac2cf75 100644 --- a/src/components/contacts/screens/PhoneInput.tsx +++ b/src/components/contacts/screens/PhoneInput.tsx @@ -44,7 +44,7 @@ export function PhoneInput({ onSkip, }: { state: Extract - dispatch: React.Dispatch + dispatch: React.ActionDispatch<[Action]> showSkipButton: boolean onSkip: () => void }) { diff --git a/src/components/contacts/screens/VerifyNumber.tsx b/src/components/contacts/screens/VerifyNumber.tsx index 18bc2e19ee..a9354bf369 100644 --- a/src/components/contacts/screens/VerifyNumber.tsx +++ b/src/components/contacts/screens/VerifyNumber.tsx @@ -29,7 +29,7 @@ export function VerifyNumber({ onSkip, }: { state: Extract - dispatch: React.Dispatch + dispatch: React.ActionDispatch<[Action]> showSkipButton: boolean onSkip: () => void }) {