Skip to content

Commit

Permalink
Update open file timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-kotikov committed Nov 22, 2024
1 parent 5ee71b6 commit e9be389
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions extensions/raycast-jq/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions extensions/raycast-jq/src/components/ActionPickFile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export const ActionPickFile = ({
do shell script "open " & raycastPath
return POSIX path of chosenFile
`,
{ timeout: 30 * 60 * 1000 },
); // 30 minutes, can't go with 0 since raycast utils seem to ignore falsy values
{ timeout: 0 },
);
if (path) {
onSelect(path);
} else {
Expand Down

0 comments on commit e9be389

Please sign in to comment.