From 6c77746a502ca73cd0fcf94d2e85fb0b706e5236 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 10 Dec 2025 19:54:59 +0200 Subject: [PATCH] add done button to standalone flow --- .../contacts/screens/ViewMatches.tsx | 47 ++++++++++--------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/src/components/contacts/screens/ViewMatches.tsx b/src/components/contacts/screens/ViewMatches.tsx index 65fc53bd88..05b2987518 100644 --- a/src/components/contacts/screens/ViewMatches.tsx +++ b/src/components/contacts/screens/ViewMatches.tsx @@ -79,7 +79,6 @@ export function ViewMatches({ }) { const t = useTheme() const {_} = useLingui() - const t = useTheme() const gutter = useGutters([0, 'wide']) const moderationOpts = useModerationOpts() const queryClient = useQueryClient() @@ -364,29 +363,31 @@ export function ViewMatches({ ListFooterComponent={!isEmpty ? : null} keyExtractor={keyExtractor} /> - {context === 'Onboarding' && ( - - - - )} + ) : ( + Done + )} + + + ) }