Skip to content

Commit a0b8bdc

Browse files
committed
fix(sidebar): sidebar llm avatar update
1 parent 0d9d08d commit a0b8bdc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/app/components/SwitchBotDropdown.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ const SwitchBotDropdown: FC<Props> = (props) => {
4646
className="px-4 py-2 ui-active:bg-primary-blue ui-active:text-white ui-not-active:text-secondary-text cursor-pointer flex flex-row items-center gap-3 pr-8"
4747
onClick={() => onSelect(botId)}
4848
>
49+
{props.type != "page" && (<div className="w-4 h-4">
50+
<img src={bot.avatar} className="w-4 h-4" />
51+
</div>)}
4952
<p className="text-sm whitespace-nowrap">{bot.name}</p>
5053
</div>
5154
</Menu.Item>

0 commit comments

Comments
 (0)