Skip to content

Commit

Permalink
fix: remove unused instance property
Browse files Browse the repository at this point in the history
  • Loading branch information
twlite committed Jan 4, 2025
1 parent ac358bc commit 72a50d1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/commandkit/src/CommandKit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import colors from './utils/colors';

export class CommandKit {
#data: CommandKitData;
static _instance: CommandKit | null = null;

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

this.#data = options;
CommandKit._instance = this;


this.#init();
}

Expand Down

0 comments on commit 72a50d1

Please sign in to comment.