Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mattzeunert committed Jun 23, 2020
1 parent f3be356 commit 84b2b2f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/backend/backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 422,7 @@ function getPageSession(pageSessionId) {
if (!session) {
pageSessionsById[pageSessionId] = {};
}
console.log("Page session", pageSessionId, pageSessionsById[pageSessionId]);
// console.log("Page session", pageSessionId, pageSessionsById[pageSessionId]);
return pageSessionsById[pageSessionId];
}

Expand Down
9 changes: 4 additions & 5 deletions packages/core/src/helperFunctions/helperFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -450,11 450,10 @@ global.fromJSInspect = function(value: any, charIndex: number) {
if (window["onFromJSInspect"]) {
window["onFromJSInspect"]();
}
if (logId) {
return postToBE("/inspect", {
logId
});
}

return postToBE("/inspect", {
logId
});
};

function getTrackingPropName(propName) {
Expand Down

0 comments on commit 84b2b2f

Please sign in to comment.