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 a4d00f9 commit 312e0b2Copy full SHA for 312e0b2
packages/bridge-controller/src/bridge-controller.ts
@@ -551,9 +551,11 @@ export class BridgeController extends StaticIntervalPollingController<BridgePoll
551
const { sse, maxRefreshCount } = getBridgeFeatureFlags(
552
this.messagingSystem,
553
);
554
- const shouldStream =
555
- sse?.enabled &&
556
- hasMinimumRequiredVersion(this.#clientVersion, sse.minimumVersion);
+ // const shouldStream =
+ // sse?.enabled &&
+ // hasMinimumRequiredVersion(this.#clientVersion, sse.minimumVersion);
557
+ // TODO enable SSE again after florin backend changes are deployed
558
+ const shouldStream = false;
559
560
this.update((state) => {
561
state.quoteRequest = updatedQuoteRequest;
0 commit comments