File tree Expand file tree Collapse file tree 4 files changed +86
-79
lines changed
apps/web/src/app/[orgShortcode]/convo/_components Expand file tree Collapse file tree 4 files changed +86
-79
lines changed Original file line number Diff line number Diff line change 65
65
"italic" : false
66
66
}
67
67
],
68
- "typescript.tsdk" : " node_modules/typescript/lib"
68
+ "typescript.tsdk" : " node_modules/typescript/lib" ,
69
+ "typescript.preferences.autoImportSpecifierExcludeRegexes" : [
70
+ " ^@radix-ui/.*$" ,
71
+ " ^next/router$" ,
72
+ " ^next/dist.*$" ,
73
+ " ^next/font.*$" ,
74
+ " ^@phosphor-icons/react/dist/.*$"
75
+ ]
69
76
}
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ import { Checkbox } from '@/src/components/shadcn-ui/checkbox';
18
18
import { AvatarPlus } from '@/src/components/avatar-plus' ;
19
19
import { usePathname , useRouter } from 'next/navigation' ;
20
20
import { useIsMobile } from '@/src/hooks/use-is-mobile' ;
21
- import { Trash } from '@phosphor-icons/react/dist/ssr' ;
22
21
import { useTimeAgo } from '@/src/hooks/use-time-ago' ;
23
22
import { type TypeId } from '@u22n/utils/typeid' ;
23
+ import { Trash } from '@phosphor-icons/react' ;
24
24
import { convoListSelecting } from '../atoms' ;
25
25
import { platform } from '@/src/lib/trpc' ;
26
26
import { memo , useMemo } from 'react' ;
@@ -174,7 +174,7 @@ export const ConvoItem = memo(function ConvoItem({
174
174
< div className = "flex flex-row items-start justify-start gap-1 text-left text-sm" >
175
175
< span className = "ph-no-capture line-clamp-2 overflow-clip break-words" >
176
176
< span className = "font-semibold" >
177
- { authorAvatarData ?. name . trim ( ) + ': ' ?? ' '}
177
+ { authorAvatarData ?. name . trim ( ) ?? ' ' + ': '}
178
178
</ span >
179
179
{ convo . entries [ 0 ] ?. bodyPlainText . trim ( ) ?? '' }
180
180
</ span >
Original file line number Diff line number Diff line change 77
77
"prettier-plugin-tailwindcss" : " ^0.6.6" ,
78
78
"tsx" : " ^4.18.0" ,
79
79
"turbo" : " ^1.13.4" ,
80
- "typescript" : " 5.5.4 "
80
+ "typescript" : " 5.6.2 "
81
81
},
82
82
"lint-staged" : {
83
83
"*" : " prettier --write --ignore-unknown"
84
84
},
85
- "packageManager" : " pnpm@9.5 .0"
85
+ "packageManager" : " pnpm@9.10 .0"
86
86
}
You can’t perform that action at this time.
0 commit comments