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 fc81008 commit 89f196eCopy full SHA for 89f196e
apps/desktop/src/renderer/src/modules/command/commands/integration.tsx
@@ -45,7 +45,9 @@ const useRegisterEagleCommands = () => {
45
enabled: ELECTRON && enableEagle && view !== undefined,
46
queryFn: async () => {
47
try {
48
- await ofetch("http://localhost:41595")
+ await ofetch("http://localhost:41595", {
49
+ mode: "no-cors",
50
+ })
51
return true
52
} catch (error: unknown) {
53
return (error as FetchError).data?.code === 401
0 commit comments