chore: generate

This commit is contained in:
opencode-agent[bot] 2026-06-05 22:09:28 +00:00
commit 93a58f55ca
3 changed files with 3 additions and 13 deletions

View file

@ -19,13 +19,7 @@ export const ServerRowMenu: Component<{
const isDefault = () => props.controller.defaultKey() === key
return (
<MenuV2
gutter={4}
modal={false}
placement="bottom-end"
open={props.open}
onOpenChange={props.onOpenChange}
>
<MenuV2 gutter={4} modal={false} placement="bottom-end" open={props.open} onOpenChange={props.onOpenChange}>
<MenuV2.Trigger
as={IconButtonV2}
variant="ghost-muted"

View file

@ -112,9 +112,7 @@ export const SettingsServersV2: Component = () => {
<Show when={health()?.version && item.type === "http"}> </Show>
<Show
when={item.type === "http" && item.http.username}
fallback={
<Show when={item.type === "http"}>{language.t("server.row.noUsername")}</Show>
}
fallback={<Show when={item.type === "http"}>{language.t("server.row.noUsername")}</Show>}
>
{item.http.username}
</Show>