We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d9d08d commit a0b8bdcCopy full SHA for a0b8bdc
src/app/components/SwitchBotDropdown.tsx
@@ -46,6 +46,9 @@ const SwitchBotDropdown: FC<Props> = (props) => {
46
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"
47
onClick={() => onSelect(botId)}
48
>
49
+ {props.type != "page" && (<div className="w-4 h-4">
50
+ <img src={bot.avatar} className="w-4 h-4" />
51
+ </div>)}
52
<p className="text-sm whitespace-nowrap">{bot.name}</p>
53
</div>
54
</Menu.Item>
0 commit comments