Skip to content

Commit 4ead70a

Browse files
committed
fix: use merged ccontext in post body
1 parent 286641c commit 4ead70a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/browser/src/experimentClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export class ExperimentClient implements Client {
231231
const headers = {
232232
Authorization: `Api-Key ${this.apiKey}`,
233233
};
234-
const body = JSON.stringify(user);
234+
const body = JSON.stringify(userContext);
235235
// CDN can only cache requests where the body is < 8KB
236236
if (body.length > 8000) {
237237
console.warn(

0 commit comments

Comments
 (0)