Skip to content
This repository was archived by the owner on Apr 20, 2024. It is now read-only.

Commit 39d9dc2

Browse files
committed
fix wrong attributable initialization
1 parent 4395849 commit 39d9dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/attributable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const attributable = (): any => {
3636
return class extends target {
3737
constructor(...args: any[]) {
3838
super(args);
39-
initializeAttributable(this, context);
39+
initializeAttributable(this, metadata);
4040
}
4141

4242
mountCallback() {

0 commit comments

Comments
 (0)