diff --git a/app/products/calls/client/rest.ts b/app/products/calls/client/rest.ts index 3403789b9..759521ef6 100644 --- a/app/products/calls/client/rest.ts +++ b/app/products/calls/client/rest.ts @@ -36,14 +36,14 @@ const ClientCalls = (superclass: any) => class extends superclass { getCalls = async () => { return this.doFetch( - `${this.getCallsRoute()}/channels`, + `${this.getCallsRoute()}/channels?mobilev2=true`, {method: 'get'}, ); }; getCallForChannel = async (channelId: string) => { return this.doFetch( - `${this.getCallsRoute()}/${channelId}`, + `${this.getCallsRoute()}/${channelId}?mobilev2=true`, {method: 'get'}, ); };