We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03c05c9 commit 1b2a7c4Copy full SHA for 1b2a7c4
1 file changed
widget/embedded/src/hooks/useFetchAllQuotes.ts
@@ -14,7 +14,10 @@ export function useFetchAllQuotes(): UseFetchResult<
14
MultiRouteResponse
15
>({
16
request: async (requestBody, options) =>
17
- await httpService().getAllRoutes(requestBody, options),
+ await httpService().getAllRoutes(
18
+ { ...requestBody, enableCentralizedSwappers: true },
19
+ options
20
+ ),
21
});
22
23
return { fetch, loading, cancelFetch };
0 commit comments