chore: generate

This commit is contained in:
opencode-agent[bot] 2026-07-16 09:53:45 +00:00
commit c69abee0c7
4 changed files with 27 additions and 40 deletions

View file

@ -90,10 +90,7 @@ export interface CommandOption {
export function commandPaletteOptions(options: CommandOption[]) {
return options.filter(
(option) =>
!option.disabled &&
!option.hidden &&
!option.id.startsWith(SUGGESTED_PREFIX) &&
option.id !== "file.open",
!option.disabled && !option.hidden && !option.id.startsWith(SUGGESTED_PREFIX) && option.id !== "file.open",
)
}