File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
webview-ui/src/components/welcome Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -744,7 +744,7 @@ export const cloudAgentsResponseSchema = z.object({
744744 id : z . string ( ) ,
745745 name : z . string ( ) ,
746746 type : z . string ( ) ,
747- icon : z . string ( ) ,
747+ icon : z . string ( ) . optional ( ) ,
748748 } ) ,
749749 ) ,
750750} )
Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ const RooTips = () => {
2424 const { t } = useTranslation ( "chat" )
2525
2626 return (
27- < div className = "flex flex-col gap-2 mb-4 max-w-[450px]font-light text-vscode-descriptionForeground" >
27+ < div className = "flex flex-col gap-2 mb-4 max-w-[450px] font-light text-vscode-descriptionForeground" >
2828 < p className = "my-0 pr-8" >
2929 < Trans i18nKey = "chat:about" />
3030 </ p >
3131 < div className = "gap-4" >
3232 { tips . map ( ( tip ) => (
33- < div key = { tip . titleKey } className = "flex items-start gap-2 mt-2 mr-6" >
33+ < div key = { tip . titleKey } className = "flex items-start gap-2 mt-2 mr-6 leading-relaxed " >
3434 { tip . icon }
3535 < span >
3636 < VSCodeLink className = "text-muted-foreground underline" href = { tip . href } >
You can’t perform that action at this time.
0 commit comments