*Delete current-round property from response if it exists as it causes problems with deterministic processing
This commit is contained in:
parent
d3a90c7714
commit
451f646fb2
|
@ -95,7 +95,10 @@ export function proxyRestMethod(
|
|||
};
|
||||
};
|
||||
|
||||
return JSON.parse(JSON.stringify(resp, getCircularReplacer()));
|
||||
if (resp?.body && "current-round" in resp?.body) {
|
||||
delete resp?.body["current-round"];
|
||||
}
|
||||
return JSON.parse(JSON.stringify(resp?.body, getCircularReplacer()));
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue