Set-Cookie header when sent to the client:const headers = new Headers();headers.append('Set-Cookie', 'cookie1=1;');headers.append('Set-Cookie', 'cookie2=2;');return new Response(null, headers);getAll works properly in the Workers environment, but entries shows only a single Set-Cookie header. On the client, only a single header, like so:Set-Cookie: cookie1=1;, cookie2=2;Set-Cookie header.Set-Cookie headers on my response?