Fix missing underscore
This commit is contained in:
@@ -41,7 +41,7 @@ export class PosthogAnalytics {
|
|||||||
private static _instance = null;
|
private static _instance = null;
|
||||||
|
|
||||||
public static instance(): PosthogAnalytics {
|
public static instance(): PosthogAnalytics {
|
||||||
if (!this.instance) {
|
if (!this._instance) {
|
||||||
this._instance = new PosthogAnalytics(posthog);
|
this._instance = new PosthogAnalytics(posthog);
|
||||||
}
|
}
|
||||||
return this._instance;
|
return this._instance;
|
||||||
|
|||||||
Reference in New Issue
Block a user