From 72c7965c8f8e20d2ac18f0f5dc4f5b6d34ef7fbe Mon Sep 17 00:00:00 2001 From: Johnny Date: Mon, 26 Jan 2026 21:16:06 +0800 Subject: [PATCH] chore: enable binary format for transport --- web/src/connect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/connect.ts b/web/src/connect.ts index e59a6964e..1a8cb7177 100644 --- a/web/src/connect.ts +++ b/web/src/connect.ts @@ -127,7 +127,7 @@ const authInterceptor: Interceptor = (next) => async (req) => { const transport = createConnectTransport({ baseUrl: window.location.origin, - useBinaryFormat: false, + useBinaryFormat: true, fetch: fetchWithCredentials, interceptors: [authInterceptor], });