From 363430c844f6c552f260da818967c98a8a117be8 Mon Sep 17 00:00:00 2001 From: TaduJR Date: Sat, 13 Dec 2025 13:26:32 +0300 Subject: [PATCH] fix: Account - Page not found when user re-added second contact after removal --- src/libs/actions/User.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/actions/User.ts b/src/libs/actions/User.ts index e88ec32dc2ed..cfee4ddf4394 100644 --- a/src/libs/actions/User.ts +++ b/src/libs/actions/User.ts @@ -354,7 +354,7 @@ function clearPendingContactActionErrors() { * So we add the temporary contact method to Onyx to use it later, after user verified magic code. */ function addPendingContactMethod(contactMethod: string) { - Onyx.merge(ONYXKEYS.PENDING_CONTACT_ACTION, { + Onyx.set(ONYXKEYS.PENDING_CONTACT_ACTION, { contactMethod, }); }