diff --git a/samples/Sample.ClientSide/wwwroot/index.html b/samples/Sample.ClientSide/wwwroot/index.html index 11810d4..70e319a 100644 --- a/samples/Sample.ClientSide/wwwroot/index.html +++ b/samples/Sample.ClientSide/wwwroot/index.html @@ -81,10 +81,8 @@

const originalResponseBuffer = await response.arrayBuffer(); const originalResponseArray = new Int8Array(originalResponseBuffer); const decompressedResponseArray = BrotliDecode(originalResponseArray); - const contentType = type === - 'dotnetwasm' ? 'application/wasm' : 'application/octet-stream'; - return new Response(decompressedResponseArray, - { headers: { 'content-type': contentType } }); + const contentType = type === 'dotnetwasm' ? 'application/wasm' : 'application/octet-stream'; + return new Response(decompressedResponseArray, { headers: { 'content-type': contentType } }); })(); } }