@@ -55,10 +55,7 @@ export function useSeamClient(): {
5555 if ( client != null )
5656 return {
5757 client,
58- endpointClient : SeamHttpEndpoints . fromClient (
59- client . client ,
60- clientOptions ,
61- ) ,
58+ endpointClient : SeamHttpEndpoints . fromClient ( client . client ) ,
6259 clientWithoutWorkspace : null ,
6360 endpointClientWithoutWorkspace : null ,
6461 }
@@ -71,10 +68,7 @@ export function useSeamClient(): {
7168
7269 return {
7370 client : seam ,
74- endpointClient : SeamHttpEndpoints . fromClient (
75- seam . client ,
76- clientOptions ,
77- ) ,
71+ endpointClient : SeamHttpEndpoints . fromClient ( seam . client ) ,
7872 clientWithoutWorkspace : null ,
7973 endpointClientWithoutWorkspace : null ,
8074 }
@@ -89,10 +83,7 @@ export function useSeamClient(): {
8983
9084 return {
9185 client : seam ,
92- endpointClient : SeamHttpEndpoints . fromClient (
93- seam . client ,
94- clientOptions ,
95- ) ,
86+ endpointClient : SeamHttpEndpoints . fromClient ( seam . client ) ,
9687 clientWithoutWorkspace : null ,
9788 endpointClientWithoutWorkspace : null ,
9889 }
@@ -108,7 +99,6 @@ export function useSeamClient(): {
10899 const endpointClientWithoutWorkspace =
109100 SeamHttpEndpointsWithoutWorkspace . fromClient (
110101 clientWithoutWorkspace . client ,
111- clientOptions ,
112102 )
113103
114104 if ( workspaceId == null ) {
@@ -128,10 +118,7 @@ export function useSeamClient(): {
128118
129119 return {
130120 client : seam ,
131- endpointClient : SeamHttpEndpoints . fromClient (
132- seam . client ,
133- clientOptions ,
134- ) ,
121+ endpointClient : SeamHttpEndpoints . fromClient ( seam . client ) ,
135122 clientWithoutWorkspace,
136123 endpointClientWithoutWorkspace,
137124 }
0 commit comments