From e62b136a1b24e94d8b235d26960bdbba7a233e91 Mon Sep 17 00:00:00 2001 From: "Molecule AI Dev Engineer A (Kimi)" Date: Thu, 18 Jun 2026 04:06:14 +0000 Subject: [PATCH] fix(mobile-chat): show history-load error banner even when partial history loaded (mc#2908 F5) The error banner was gated on messages.length === 0, so a partially successful history load hid the failure state and left users without a retry affordance. Remove that guard so the banner renders whenever historyError is set. Relates-to: #2908 --- canvas/src/components/mobile/MobileChat.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/canvas/src/components/mobile/MobileChat.tsx b/canvas/src/components/mobile/MobileChat.tsx index f4170b86..3da36252 100644 --- a/canvas/src/components/mobile/MobileChat.tsx +++ b/canvas/src/components/mobile/MobileChat.tsx @@ -521,7 +521,7 @@ export function MobileChat({ Loading chat history… )} - {tab === "my" && !historyLoading && historyError && messages.length === 0 && ( + {tab === "my" && !historyLoading && historyError && (