aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(navigation)
diff options
context:
space:
mode:
authorMaheshtheDev <[email protected]>2025-10-29 06:38:16 +0000
committerMaheshtheDev <[email protected]>2025-10-29 06:38:16 +0000
commit2145340c11bfafc037f417f4e4e41b6593f3964e (patch)
treebf95d534daa8039aea56a93a88a36fc9d1d47381 /apps/web/app/(navigation)
parentfix: add type safety annotations and fix hook dependencies in chat (#521) (diff)
downloadsupermemory-2145340c11bfafc037f417f4e4e41b6593f3964e.tar.xz
supermemory-2145340c11bfafc037f417f4e4e41b6593f3964e.zip
fix: skeleton and mobile chat improvments (#541)10-28-fix_skeleton_and_mobile_chat_improvments
### Improved mobile responsiveness across chat interface and memory list with better loading states. ### What changed? - Added responsive padding in chat page for mobile devices - Enhanced header layout for chat titles with proper truncation and responsive text sizes - Replaced the simple loading spinner in memory list with skeleton loading cards - Improved message container width constraints on mobile devices
Diffstat (limited to 'apps/web/app/(navigation)')
-rw-r--r--apps/web/app/(navigation)/chat/[id]/page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/(navigation)/chat/[id]/page.tsx b/apps/web/app/(navigation)/chat/[id]/page.tsx
index b3812998..da64a79d 100644
--- a/apps/web/app/(navigation)/chat/[id]/page.tsx
+++ b/apps/web/app/(navigation)/chat/[id]/page.tsx
@@ -20,7 +20,7 @@ export default function ChatPage() {
return (
<div className="flex flex-col w-full">
<div className="flex flex-col h-[93vh]">
- <div className="flex-1 flex justify-center min-h-0 w-full px-4">
+ <div className="flex-1 flex justify-center min-h-0 w-full md:px-4">
<div className="flex flex-col min-h-0 w-full max-w-4xl">
<ChatMessages />
</div>