Skip to content

Commit

Permalink
fix: Unnecessary debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
HEmile committed Nov 4, 2023
1 parent c8baf39 commit cac7ad9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/obsidian-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ export class ObsidianStore extends Component implements ICoreDataStore {
} as EdgeDataDefinition,
classes: [type, "type-" + type, "type-" + type.replaceAll(" ", "-")]
} as EdgeDefinition;
console.log(edge);
}
if (edgeId in edges) {
edges[edgeId].push(edge);
Expand Down Expand Up @@ -190,7 +189,6 @@ ${edge.data.context}`;
return;
}
const path = file.path;
// @ts-ignore
const resolvedLinks = this.metadata.resolvedLinks;
for (const otherPath of Object.keys(resolvedLinks)) {
if (path in resolvedLinks[otherPath]) {
Expand Down

0 comments on commit cac7ad9

Please sign in to comment.