oomhj

Results 1 comments of oomhj

The issuse was caused by the BufferToString function in **api-client/src/shims/browser/buffer.ts** ```javascript export const bufferToString = (buffer: ArrayBuffer): string => { let binaryString = ''; const bytes = new Uint8Array(buffer); for...