File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -122,16 +122,22 @@ export async function getDevToolsRpcClient(
122122 events,
123123 connectionMeta,
124124 call : ( ...args : any ) : any => {
125- // @ts -expect-error casting
126- return serverRpc . call ( ...args )
125+ return serverRpc . $call (
126+ // @ts -expect-error casting
127+ ...args ,
128+ )
127129 } ,
128130 callEvent : ( ...args : any ) : any => {
129- // @ts -expect-error casting
130- return serverRpc . callEvent ( ...args )
131+ return serverRpc . $callEvent (
132+ // @ts -expect-error casting
133+ ...args ,
134+ )
131135 } ,
132136 callOptional : ( ...args : any ) : any => {
133- // @ts -expect-error casting
134- return serverRpc . callOptional ( ...args )
137+ return serverRpc . $callOptional (
138+ // @ts -expect-error casting
139+ ...args ,
140+ )
135141 } ,
136142 client : clientRpc ,
137143 }
You can’t perform that action at this time.
0 commit comments