Skip to content

Commit a1f98f9

Browse files
committed
PR Review
1 parent 6ce9ce5 commit a1f98f9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/types/src/cloud.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
})

webview-ui/src/components/welcome/RooTips.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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}>

0 commit comments

Comments
 (0)