Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
guyca committed Sep 22, 2024
1 parent 3376260 commit 520ece2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-obsidian/src/graph/ObjectGraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export abstract class ObjectGraph<T = unknown> implements Graph {
if (Reflect.hasMetadata(key, this)) {
name = Reflect.getMetadata(key, this);
} else {
name = uniqueId(this.constructor.name)
name = uniqueId(this.constructor.name);
Reflect.defineMetadata(key, name, this);
}
return name;
Expand Down

0 comments on commit 520ece2

Please sign in to comment.