hedgequantx 2.6.108 → 2.6.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/menus/ai-agent.js +2 -2
package/package.json
CHANGED
package/src/menus/ai-agent.js
CHANGED
|
@@ -1034,9 +1034,9 @@ const setupProxyOAuth = async (provider, config) => {
|
|
|
1034
1034
|
|
|
1035
1035
|
let authSuccess = false;
|
|
1036
1036
|
|
|
1037
|
-
// First try: wait
|
|
1037
|
+
// First try: wait 3 seconds for automatic callback (instant for local, very fast fallback for VPS)
|
|
1038
1038
|
try {
|
|
1039
|
-
await proxyManager.waitForAuth(authState,
|
|
1039
|
+
await proxyManager.waitForAuth(authState, 3000, (status) => {
|
|
1040
1040
|
waitSpinner.text = status;
|
|
1041
1041
|
});
|
|
1042
1042
|
authSuccess = true;
|