Skip to content

Commit 72a50d1

Browse files
committed
fix: remove unused instance property
1 parent ac358bc commit 72a50d1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/commandkit/src/CommandKit.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import colors from './utils/colors';
99

1010
export class CommandKit {
1111
#data: CommandKitData;
12-
static _instance: CommandKit | null = null;
1312

1413
/**
1514
* Create a new command and event handler with CommandKit.
@@ -31,8 +30,7 @@ export class CommandKit {
3130
}
3231

3332
this.#data = options;
34-
CommandKit._instance = this;
35-
33+
3634
this.#init();
3735
}
3836

0 commit comments

Comments
 (0)