Skip to content

Commit

Permalink
remove console statements
Browse files Browse the repository at this point in the history
  • Loading branch information
wendybujalski committed Dec 17, 2024
1 parent e740113 commit 41b1b90
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions app/web/src/store/views.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -593,17 +593,13 @@ export const useViewsStore = (forceChangeSetId?: ChangeSetId) => {
this.syncSelectionIntoUrl();
},
async selectView(id: ViewId) {
console.log(`select view ${id}`);
console.log(this.viewList);
console.log(this.$id);
const view = this.viewsById[id];
if (view) {
const route = router.currentRoute;
const params = {
...route.value.params,
viewId: id,
};
console.log(params);
router.push({
name: "workspace-compose-view",
params,
Expand Down Expand Up @@ -756,8 +752,6 @@ export const useViewsStore = (forceChangeSetId?: ChangeSetId) => {
let url = API_PREFIX.concat(["default", "get_diagram"]);
if (viewId) url = API_PREFIX.concat([{ viewId }, "get_diagram"]);

console.log(url);

return new ApiRequest<{
view: ViewDescription;
diagram: {
Expand Down

0 comments on commit 41b1b90

Please sign in to comment.