This repository was archived by the owner on Apr 21, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -309,13 +309,13 @@ export function Chat() {
309
309
const a_time = isDirectMessage ( a . content )
310
310
? a . content . date
311
311
: isActivityItem ( a . content )
312
- ? a . content . last_updated
313
- : 0 ;
312
+ ? a . content . last_updated
313
+ : 0 ;
314
314
const b_time = isDirectMessage ( b . content )
315
315
? b . content . date
316
316
: isActivityItem ( b . content )
317
- ? b . content . last_updated
318
- : 0 ;
317
+ ? b . content . last_updated
318
+ : 0 ;
319
319
320
320
return b_time - a_time ; // Descending order
321
321
} ) ;
@@ -436,7 +436,7 @@ export function Chat() {
436
436
< MutinyWalletGuard >
437
437
< main class = "mx-auto grid h-[100dvh] w-full max-w-[600px] grid-cols-1 grid-rows-[minmax(10px,1fr)_4rem] flex-col overflow-y-hidden safe-top safe-bottom" >
438
438
< div class = "overflow-y-auto" >
439
- < div class = "fixed top-0 z-50 flex w-full flex-col gap-2 bg-m-grey-975/70 p-4 backdrop-blur-lg" >
439
+ < div class = "fixed top-0 z-50 flex w-full max-w-[600px] flex-col gap-2 bg-m-grey-975/70 p-4 backdrop-blur-lg" >
440
440
< div class = "flex w-full flex-col gap-2" >
441
441
< div class = "flex items-center gap-2" >
442
442
< BackPop default = "/" title = "" />
You can’t perform that action at this time.
0 commit comments