Cannot see request body

Hello, i’ve some problems to capture request payloads. OR is update in front and back to the last versions. This is my network config:
network: {
failuresOnly: false,
capturePayload: true,
useProxy: false,
sanitizer: data => {
console.log(
~ file: openReplay.jsx:103 ~ initOpenReplay ~ data:',
data
);
return data;
},
},
and all body are null:

That’s because it’s a GET request and therefore doesn’t have a request body. More that here in the HTTP Specs.