Browse Source

chore: generate

opencode-agent[bot] 3 months ago
parent
commit
907281a80a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      packages/app/src/components/dialog-select-file.tsx

+ 2 - 1
packages/app/src/components/dialog-select-file.tsx

@@ -107,7 +107,8 @@ function createCommandEntries(props: {
   const allowed = createMemo(() => {
     if (props.filesOnly()) return []
     return props.command.options.filter(
-      (option) => !option.disabled && !option.hidden && !option.id.startsWith("suggested.") && option.id !== "file.open",
+      (option) =>
+        !option.disabled && !option.hidden && !option.id.startsWith("suggested.") && option.id !== "file.open",
     )
   })