diff --git a/.changeset/wet-comics-glow.md b/.changeset/wet-comics-glow.md new file mode 100644 index 000000000000..e00a809de33f --- /dev/null +++ b/.changeset/wet-comics-glow.md @@ -0,0 +1,5 @@ +--- +"@ledgerhq/live-common": patch +--- + +fix(LIVE-11382): increase LLM quotes timeout to 60 seconds diff --git a/libs/ledger-live-common/src/exchange/swap/const/timeout.ts b/libs/ledger-live-common/src/exchange/swap/const/timeout.ts index 766242dd3531..2f9e7556e943 100644 --- a/libs/ledger-live-common/src/exchange/swap/const/timeout.ts +++ b/libs/ledger-live-common/src/exchange/swap/const/timeout.ts @@ -8,4 +8,4 @@ export const DEFAULT_SWAP_RATES_INTERVAL_MS = 20 * 1000; /** * Default to 30 seconds LLM */ -export const DEFAULT_SWAP_RATES_LLM_INTERVAL_MS = 30 * 1000; +export const DEFAULT_SWAP_RATES_LLM_INTERVAL_MS = 60 * 1000;