Skip to content

Commit

Permalink
chore: remove unnecessary console logs
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 557eb7f353a3c22e05da08c33fdafa01641871bc
  • Loading branch information
IcaroG authored and actions-user committed Dec 23, 2024
1 parent f1a57a2 commit 3607867
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions platform/wab/src/wab/client/studio-ctx/StudioCtx.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,6 @@ export class StudioCtx extends WithDbCtx {
if (!currentArena) {
return;
}
console.log("running currentArena change", currentArena);
const componentsToObserve = isDedicatedArena(currentArena)
? [currentArena.component]
: currentArena.children.map(
Expand All @@ -834,10 +833,6 @@ export class StudioCtx extends WithDbCtx {
if (!currentViewCtxComponent) {
return;
}
console.log(
"running viewCtx component change",
currentViewCtxComponent
);
const componentsToObserve = [currentViewCtxComponent];
this.dbCtx().maybeObserveComponents(
componentsToObserve,
Expand Down
1 change: 0 additions & 1 deletion platform/wab/src/wab/shared/core/observable-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1509,7 +1509,6 @@ export class ChangeRecorder implements IChangeRecorder {
this.observedCompsCache.set(component, currentTime);
return observedNewComp;
}, false);
console.log("Tried to observe", components, observedResult);
if (observedResult) {
mutateGlobalObservable();
console.log("Mutated global state");
Expand Down

0 comments on commit 3607867

Please sign in to comment.