From 5f37b3cc2342f3dd6e142736a42f562f5a71b41f Mon Sep 17 00:00:00 2001 From: whekin Date: Thu, 12 Mar 2026 11:41:08 +0400 Subject: [PATCH] fix(miniapp): refresh data after locale changes --- apps/miniapp/src/App.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/miniapp/src/App.tsx b/apps/miniapp/src/App.tsx index 78368d4..6021c2f 100644 --- a/apps/miniapp/src/App.tsx +++ b/apps/miniapp/src/App.tsx @@ -1109,6 +1109,7 @@ function App() { : current ) setLocale(updated.effectiveLocale) + await refreshHouseholdData(initData, true, true) } finally { setSavingMemberLocale(false) } @@ -1141,6 +1142,8 @@ function App() { if (!currentReady.member.preferredLocale) { setLocale(updated.effectiveLocale) } + + await refreshHouseholdData(initData, true, true) } finally { setSavingHouseholdLocale(false) }